# ant-design-demo **Repository Path**: Java_in_action/ant-design-demo ## Basic Information - **Project Name**: ant-design-demo - **Description**: 学习React,动手实现antd官方组件效果 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-29 - **Last Updated**: 2021-09-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README - 项目目录 ``` my-app ├─ .env ├─ .gitignore ├─ .prettierrc ├─ config │ ├─ env.js │ ├─ getHttpsConfig.js │ ├─ jest │ │ ├─ babelTransform.js │ │ ├─ cssTransform.js │ │ └─ fileTransform.js │ ├─ modules.js │ ├─ paths.js │ ├─ pnpTs.js │ ├─ webpack.config.js │ └─ webpackDevServer.config.js ├─ LICENSE ├─ package.json ├─ public │ ├─ favicon.ico │ ├─ index.html │ ├─ logo192.png │ ├─ logo512.png │ ├─ manifest.json │ └─ robots.txt ├─ README.md ├─ scripts │ ├─ start.js │ └─ test.js ├─ src │ ├─ App.js │ ├─ App.less │ ├─ assets │ │ ├─ icon │ │ │ ├─ index.js │ │ │ └─ svg │ │ │ ├─ ant.svg │ │ │ ├─ code.svg │ │ │ ├─ codePitch.svg │ │ │ └─ magicStick.svg │ │ ├─ image │ │ └─ styles │ │ ├─ index.less │ │ └─ public.less │ ├─ components │ │ ├─ ApiCode │ │ │ ├─ columns1.js │ │ │ ├─ index.jsx │ │ │ └─ index.module.less │ │ ├─ ModuleCode │ │ │ ├─ index.jsx │ │ │ └─ index.module.less │ │ ├─ ShowCode │ │ │ ├─ index.jsx │ │ │ └─ index.module.less │ │ ├─ SvgIcon │ │ │ ├─ index.jsx │ │ │ └─ style.module.less │ │ └─ WindowScroll │ │ └─ index.jsx │ ├─ index.js │ ├─ index.less │ ├─ logo.svg │ ├─ mock │ │ ├─ left-data.js │ │ └─ route.js │ ├─ pages │ │ ├─ Components │ │ │ ├─ Button │ │ │ │ ├─ index.jsx │ │ │ │ └─ index.module.less │ │ │ ├─ Card │ │ │ │ ├─ apiList.js │ │ │ │ ├─ codeList.js │ │ │ │ ├─ codes │ │ │ │ │ ├─ demo1.jsx │ │ │ │ │ ├─ demo10.jsx │ │ │ │ │ ├─ demo2.jsx │ │ │ │ │ ├─ demo3.jsx │ │ │ │ │ ├─ demo4.jsx │ │ │ │ │ ├─ demo5.jsx │ │ │ │ │ ├─ demo6.jsx │ │ │ │ │ ├─ demo7.jsx │ │ │ │ │ ├─ demo8.jsx │ │ │ │ │ └─ demo9.jsx │ │ │ │ ├─ index.jsx │ │ │ │ └─ index.module.less │ │ │ ├─ index.jsx │ │ │ ├─ index.module.less │ │ │ ├─ routeList.js │ │ │ └─ Table │ │ │ └─ index.jsx │ │ ├─ Docs │ │ │ └─ index.jsx │ │ ├─ index │ │ │ ├─ index.jsx │ │ │ ├─ index.module.less │ │ │ └─ routeList.js │ │ └─ Loading │ │ └─ index.jsx │ └─ utils └─ yarn.lock ```