概述
Antd 是一个比较好的前端UI框架。
官网:https://ant.design/index-cn
在React 项目中下载,使用 yarn add 命令即可。
使用也很简单。
在组件中引用它的css 样式,然后按需引入即可。
下面贴上代码。
import React, {Component} from 'react';
import 'antd/dist/antd.css';
import { Input, Button, List } from 'antd';
const data = [
'Racing car sprays burning fuel into crowd.',
'Japanese princess to wed commoner.',
'Australian walks 100km after outback crash.',
'Man charged over missing wedding girl.',
'Los Angeles battles huge wildfires.',
];
class BeautifulToDoList extends Component {
render() {
return (
<div style={{marginTop: '10px',marginLeft: '10px'}}>
<Input
placeholder="todo info"
style={{width: 300, marginRight: '10px'}}
/>
<Button type="primary">提交</Button>
<List
style={{marginTop: '10px', width: '300px'}}
bordered
dataSource={data}
renderItem={item => (<List.Item>{item}</List.Item>)}
/>
</div>
)
}
}
export default BeautifulToDoList;
然后,轻松的美化了todolist
最后
以上就是隐形雨为你收集整理的Antd 将TodoList 页面美化一下的全部内容,希望文章能够帮你解决Antd 将TodoList 页面美化一下所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复