# clone the repo
$ git clone https://github.com/minhtuanchannhan/react-admin-template.git my-project
# go into app's directory
$ cd my-project
# install app's dependencies
$ npm install || yarn installThis project was bootstrapped with Create React App
# dev server with hot reload at http://localhost:3000
$ npm start || yanr startNavigate to http://localhost:3000. The app will automatically reload if you change any of the source files.
Check src/components/Example directory to get more example components. You can create routes to check with component you want to use.
Run build to build the project. The build artifacts will be stored in the build/ directory.
# build for production with minification
$ npm run build || yarn buildWithin the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this:
react-admin-template
├── public/ #static files
│ ├── assets/ #assets
│ └── index.html #html temlpate
│
├── src/ #project root
│ ├── components/ #components source
│ ├── config/ #config project
│ ├── routes/ #routes config
│ ├── services/ #services config
│ ├── styles/ #styles
│ ├── index.js
│
└── package.json