TypeScript React App Tempalte 基于CRA的app模板
git clone https://github.com/LYD4C/cra-template-d4c.git
yarn install
yarn dev
yarn run test
yarn run test --fix
yarn build
NAME 是需要添加的页面名称
yarn run addPage NAME
NAME 是需要添加的组件名称
yarn run addCompo NAME
/src/config/index.ts
config 目录下可以配置与运行环境相关的变量,如合约地址等
该文件夹最终导出 CONFIG Object 变量
Example:
//src/pages/Main/Main.tsx
import CONFIG from "../../config"
console.log(CONFIG.xxx)
需按需要配置
public/index.html
在写样式的时候,UI稿尺寸 / 100。 Example:
width: 200px;
width: 2rem;