Ant design 不应用按钮形状和颜色
Ant design Button shape and color are not applied
我用 npm 安装了 ant design
npm i --save antd
然后我像这样从他们的组件中使用 Button
import { Button } from 'antd';
<Button type="primary" shape="circle">
hey
</Button>
问题是按钮的形状和类型应用不正确。
我该如何解决这个问题?
在您的入口点(您有 ReactDOM.render()
的地方)在文件顶部添加以下内容:
import 'antd/dist/antd.css';
或者如果您使用 create-react-app
,在您的 src/App.css
:
@import '~antd/dist/antd.css';
这将为您提供所需的样式。希望对您有所帮助!
Getting Started with Antd - Official Docs
Usage with Create React App - Official Docs
我用 npm 安装了 ant design
npm i --save antd
然后我像这样从他们的组件中使用 Button
import { Button } from 'antd';
<Button type="primary" shape="circle">
hey
</Button>
问题是按钮的形状和类型应用不正确。 我该如何解决这个问题?
在您的入口点(您有 ReactDOM.render()
的地方)在文件顶部添加以下内容:
import 'antd/dist/antd.css';
或者如果您使用 create-react-app
,在您的 src/App.css
:
@import '~antd/dist/antd.css';
这将为您提供所需的样式。希望对您有所帮助!
Getting Started with Antd - Official Docs Usage with Create React App - Official Docs