React templates contents
Merry Christmas & Happy New Year
Extra 25% off for all sale items + Free CoreUI Icons PRO with every order!
Limited offer ends 1st January 2025, use code 2024XMAS25 during checkout.
Limited offer ends 1st January 2025, use code 2024XMAS25 during checkout.
Discover what's included in CoreUI React Admin Template, including our precompiled and source code flavors.
On this page
Project structure#
Once downloaded, unzip the compressed folder and you'll see something like this:
JavaScript based project
coreui-react-admin-template/├── public/├── src/│ ├── assets/│ │ ├── brand/│ │ └── images/│ ├── components/│ ├── layout/│ ├── scss/│ └── views/│ ├── base/│ ├── buttons/│ ├── css/│ ├── icons/│ ├── notifications/│ ├── App.js│ ├── App.test.js│ ├── _nav.js│ ├── index.js│ ├── reportWebVitals.js│ ├── routes.js│ ├── setupTests.js│ └── store.js└── package.json
TypeScript based project
TypeScript project is available only in PRO version.
coreui-react-admin-template-typescript/├── public/├── src/│ ├── assets/│ │ ├── brand/│ │ └── images/│ ├── components/│ ├── layout/│ ├── scss/│ └── views/│ ├── base/│ ├── buttons/│ ├── css/│ ├── icons/│ ├── notifications/│ ├── App.test.tsx│ ├── App.tsx│ ├── _nav.tsx│ ├── index.tsx│ ├── react-app-env.d.ts│ ├── reportWebVitals.ts│ ├── routes.ts│ ├── setupTests.ts│ └── store.ts└── package.json
This is the most basic form of CoreUI React Admin Templates.