Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add link of antd #1199

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/content/learn/your-first-component.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ React 允许你将标签、CSS 和 JavaScript 组合成自定义“组件”,
</PageLayout>
```

随着项目的发展,你会发现很多布局可以通过复用已经完成的组件来实现,从而加快开发进程。上文中提到的目录可以通过 `<TableOfContents />` 组件添加到任意的画面中!你也可以使用 React 开源社区分享的大量组件(例如 [Chakra UI](https://chakra-ui.com/)[Material UI](https://material-ui.com/))来快速启动项目。
随着项目的发展,你会发现很多布局可以通过复用已经完成的组件来实现,从而加快开发进程。上文中提到的目录可以通过 `<TableOfContents />` 组件添加到任意的画面中!你也可以使用 React 开源社区分享的大量组件(例如 [Chakra UI](https://chakra-ui.com/)[Material UI](https://material-ui.com/) 和 [Ant Design](https://ant.design/))来快速启动项目。

## 定义组件 {/*defining-a-component*/}

Expand Down