我是靠谱客的博主 隐形雨,最近开发中收集的这篇文章主要介绍Antd 将TodoList 页面美化一下,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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 页面美化一下所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(56)

评论列表共有 0 条评论

立即
投稿
返回
顶部