CoreUI is an MIT-licensed open source project and is completely free to use. However, the amount of effort needed to maintain and develop new features for the project is not sustainable without proper financial backing.
You can support our Open Source software development in the following ways:
Discover what's included in CoreUI React Admin Template, including our precompiled and source code flavors.
Once downloaded, unzip the compressed folder and you'll see something like this:
JavaScript based project
1coreui-react-admin-template/2├── public/3├── src/4│ ├── assets/5│ │ ├── brand/6│ │ └── images/7│ ├── components/8│ ├── layout/9│ ├── scss/10│ └── views/11│ ├── base/12│ ├── buttons/13│ ├── css/14│ ├── icons/15│ ├── notifications/16│ ├── App.js17│ ├── App.test.js18│ ├── _nav.js19│ ├── index.js20│ ├── reportWebVitals.js21│ ├── routes.js22│ ├── setupTests.js23│ └── store.js24└── package.json
TypeScript based project
TypeScript project is available only in PRO version.
1coreui-react-admin-template-typescript/2├── public/3├── src/4│ ├── assets/5│ │ ├── brand/6│ │ └── images/7│ ├── components/8│ ├── layout/9│ ├── scss/10│ └── views/11│ ├── base/12│ ├── buttons/13│ ├── css/14│ ├── icons/15│ ├── notifications/16│ ├── App.test.tsx17│ ├── App.tsx18│ ├── _nav.tsx19│ ├── index.tsx20│ ├── react-app-env.d.ts21│ ├── reportWebVitals.ts22│ ├── routes.ts23│ ├── setupTests.ts24│ └── store.ts25└── package.json
This is the most basic form of CoreUI React Admin Templates.