react ant-mobile 初体验(1)
在react-app中添加ant-mobile 开发手机端应用
create-react-app 是业界最优秀的 React 相关应用开发工具之一,以此工具来使用 antd-mobile 组件。
参考:Ant Design Mobile
$ npm install -g create-react-app
# 注意:工具会自动初始化一个脚手架并安装 React 项目的各种必要依赖
$ create-react-app my-app
$ cd my-app
$ npm start
---待完善