import React from "react"; import "antd/dist/antd.css"; import { Input, Button, List } from "antd"; const TotoListUI = (props) =>{ return (
props.changeInputValue(e)} />
( {item} )} />
); } // import { CHANGE_INPUT,ADD_ITEM,DELETE_ITEM} from "./store/actionsTypes"; // class TotoListUI extends Component { // // constructor(props) { // // super(props); // // this.state = { } // // } // //把ui部分写成无状态组件 // render() { // return ( //
//
// this.props.changeInputValue(e)} // /> // //
//
// ( // // {item} // // // )} // /> //
//
// ); // } // } export default TotoListUI;