-
antd 是基于 Ant Design 设计体系的 React UI 组件库,主要用于研发企业级中后台产品
-
安装antd
$ yarn add antd
效果图:
4. 代码
TodoList.js
import React, { Component } from 'react';
import 'antd/dist/antd.css';
import { Input , Button , List } from 'antd';
const data = [
'Ant Design Title 1',
'Ant Design Title 2',
'Ant Design Title 3',
'Ant Design Title 4',
];
class TodoList extends Component {
render(){
return (
<div style={
{marginTop:'10px',marginLeft:'10px'}}>
<div>
<Input placeholder="todo info" style=