gitextract_bdalo8pp/ ├── .commitlintrc.js ├── .eslintrc ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config/ │ ├── env.js │ ├── jest/ │ │ ├── cssTransform.js │ │ └── fileTransform.js │ ├── modules.js │ ├── paths.js │ ├── pnpTs.js │ ├── webpack.config.js │ └── webpackDevServer.config.js ├── package.json ├── public/ │ ├── index.html │ ├── manifest.json │ ├── robots.txt │ └── theme.less ├── scripts/ │ ├── build.js │ ├── start.js │ └── test.js ├── src/ │ ├── App.test.tsx │ ├── App.tsx │ ├── Page.tsx │ ├── components/ │ │ ├── HeaderCustom.tsx │ │ ├── Page.tsx │ │ ├── SiderCustom.tsx │ │ ├── SiderMenu.tsx │ │ ├── animation/ │ │ │ ├── BasicAnimations.tsx │ │ │ └── ExampleAnimations.tsx │ │ ├── auth/ │ │ │ ├── Basic.tsx │ │ │ └── RouterEnter.tsx │ │ ├── charts/ │ │ │ ├── Echarts.tsx │ │ │ ├── EchartsArea.tsx │ │ │ ├── EchartsEffectScatter.tsx │ │ │ ├── EchartsForce.tsx │ │ │ ├── EchartsGraphnpm.tsx │ │ │ ├── EchartsPie.tsx │ │ │ ├── EchartsScatter.tsx │ │ │ ├── Recharts.tsx │ │ │ ├── RechartsBarChart.tsx │ │ │ ├── RechartsRadarChart.tsx │ │ │ ├── RechartsRadialBarChart.tsx │ │ │ └── RechartsSimpleLineChart.tsx │ │ ├── cssmodule/ │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ ├── dashboard/ │ │ │ ├── Dashboard.tsx │ │ │ ├── EchartsProjects.tsx │ │ │ └── EchartsViews.tsx │ │ ├── env/ │ │ │ └── index.tsx │ │ ├── extension/ │ │ │ ├── MultipleMenu.tsx │ │ │ ├── QueryParams.tsx │ │ │ └── Visitor.tsx │ │ ├── index.tsx │ │ ├── pages/ │ │ │ ├── Login.tsx │ │ │ └── NotFound.tsx │ │ ├── smenu/ │ │ │ ├── Sub1.tsx │ │ │ └── Sub2.tsx │ │ ├── tables/ │ │ │ ├── AdvancedTables.tsx │ │ │ ├── AsynchronousTable.tsx │ │ │ ├── BasicTable.tsx │ │ │ ├── BasicTables.tsx │ │ │ ├── ExpandedTable.tsx │ │ │ ├── FixedTable.tsx │ │ │ ├── SearchTable.tsx │ │ │ ├── SelectTable.tsx │ │ │ └── SortTable.tsx │ │ ├── ui/ │ │ │ ├── Buttons.tsx │ │ │ ├── Draggable.tsx │ │ │ ├── Gallery.tsx │ │ │ ├── Icons.tsx │ │ │ ├── Modals.tsx │ │ │ ├── Notifications.tsx │ │ │ ├── Spins.tsx │ │ │ ├── Tabs.tsx │ │ │ ├── Wysiwyg.tsx │ │ │ ├── banners/ │ │ │ │ ├── AutoPlay.tsx │ │ │ │ ├── Basic.tsx │ │ │ │ ├── Custom.tsx │ │ │ │ └── index.tsx │ │ │ ├── emoji/ │ │ │ │ ├── iconfont.ts │ │ │ │ └── index.tsx │ │ │ └── map/ │ │ │ ├── Tencent.tsx │ │ │ └── index.tsx │ │ └── widget/ │ │ ├── AuthWidget.tsx │ │ ├── BreadcrumbCustom.tsx │ │ ├── Copyright.tsx │ │ ├── Loading.tsx │ │ ├── PwaInstaller.tsx │ │ ├── ThemePicker.tsx │ │ └── index.tsx │ ├── index.tsx │ ├── react-app-env.d.ts │ ├── routes/ │ │ ├── RouteWrapper.tsx │ │ ├── config.ts │ │ └── index.tsx │ ├── service/ │ │ ├── config.ts │ │ ├── index.ts │ │ └── tools.ts │ ├── serviceWorker.ts │ ├── style/ │ │ ├── antd/ │ │ │ ├── header.less │ │ │ ├── index.less │ │ │ ├── layout.less │ │ │ ├── menu.less │ │ │ ├── reset.less │ │ │ ├── utils.less │ │ │ └── variables.less │ │ ├── app.less │ │ ├── banner.less │ │ ├── button.less │ │ ├── card.less │ │ ├── global.less │ │ ├── icons.less │ │ ├── img.less │ │ ├── index.less │ │ ├── lib/ │ │ │ └── animate.css │ │ ├── login.less │ │ ├── menu.less │ │ ├── modal.less │ │ ├── scroll.less │ │ ├── table.less │ │ ├── theme/ │ │ │ ├── index.js │ │ │ ├── theme-danger.json │ │ │ ├── theme-grey.json │ │ │ ├── theme-info.json │ │ │ └── theme-warn.json │ │ ├── utils-border.less │ │ ├── utils-color.less │ │ ├── utils-size.less │ │ ├── utils-spacing.less │ │ ├── utils-text.less │ │ └── variables.less │ └── utils/ │ ├── hooks.ts │ └── index.ts ├── theme.js └── tsconfig.json