Antd 将TodoList 页面美化一下
Antd 是一个比较好的前端UI框架。官网:https://ant.design/index-cn在React 项目中下载,使用 yarn add 命令即可。使用也很简单。在组件中引用它的css 样式,然后按需引入即可。下面贴上代码。import React, {Component} from 'react';import 'antd/dist/antd.css';i...