chore: format markdown code. (#42)

* format: fix markdown

* update: fix markdown

* update: fix cron problems

* update: delete .markdownlintignore

* update

* chore: add tab -> 4 space

* chore: fix tab -> 2 in the .editorconfig
This commit is contained in:
fw_qaq
2022-11-11 01:51:54 +08:00
committed by GitHub
parent ea80136db3
commit 5701da6e5b
88 changed files with 1075 additions and 1126 deletions

View File

@ -3,7 +3,6 @@ styled-components 备忘清单
此快速参考备忘单提供了使用 CSS in JS 工具的各种方法。
入门
----
@ -29,6 +28,7 @@ import styled from 'styled-components';
```
创建一个 Title 组件
```jsx
// 该组件将呈现具有样式的 <h1> 标签
const Title = styled.h1`
@ -236,7 +236,6 @@ const Demo = () => (
);
```
### 样式对象
```jsx {2,5}
@ -1107,4 +1106,4 @@ const Example = () => (
Drag Me!
</Comp>
);
```
```