gpt4 book ai didi

javascript - 将 Create-React-App 与 antd 结合使用

转载 作者:行者123 更新时间:2023-11-29 17:44:40 24 4
gpt4 key购买 nike

我尝试使用 antdcreate react app .

我在元素中使用安装了antd

yarn add antd

使用antd的按钮组件添加了一个按钮

import React, { Component } from 'react';
import Button from 'antd/lib/button';
import './App.css';

class App extends Component {
render() {
return (
<div className="App">
<Button type="primary">Button</Button>
</div>
);
}
}

export default App;

仍然,按钮没有正确呈现。检查元素时,我发现正在应用 antd 类。只是没有加载css。

最佳答案

我必须在 src/App.css 的顶部添加 antd/dist/antd.css。

@import '~antd/dist/antd.css';

.App {
text-align: center;
}

我从 antd's official docs for using with Create React App 中找到了这个

所以所有需要的步骤就是安装antd

yarn add antd

使用antd的组件

import React, { Component } from 'react';
import Button from 'antd/lib/button';
import './App.css';

class App extends Component {
render() {
return (
<div className="App">
<Button type="primary">Button</Button>
</div>
);
}
}

export default App;

并在主css文件(src/App.css)中导入antdcss

关于javascript - 将 Create-React-App 与 antd 结合使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50782351/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com