ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
1.使用日期组件 ~~~ import 'antd/dist/antd.css' import { Input,Button} from 'antd'; ~~~ ~~~ class App extends Component { render() { return ( <div> <Input placeholder="Basic usage" style={{width:300,,marginRight:"10px"}} /> <Button type="primary">添加</Button> </div> ) } } export default App; ~~~