Ant Design
一、安装包
npm install antd --save
二、在根页面(index.js)引入样式
import 'antd/dist/antd.css';
三、修改webpage.config.js中的css设置
module: {
loaders: [
...
{
test: /\.css$/,
//下面这个是antdensign的配置文件
loader:'style-loader!css-loader'
}
]
},
四、在具体使用页面引入组件
import { Input } from 'antd';
五、使用
ReactDOM.render(<Input placeholder="Basic usage" />, mountNode);
网友评论