Support CoreUI Development

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:

  • Buy the CoreUI PRO, and get access to PRO components, and dedicated support.
  • Became a sponsor, and get your logo on BACKERS.md/README.md files or each site of this documentation
  • Give us a star ⭐️ on Github.

React templates contents

Discover what's included in CoreUI React Admin Template, including our precompiled and source code flavors.

Project structure#

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.js
17│ ├── App.test.js
18│ ├── _nav.js
19│ ├── index.js
20│ ├── reportWebVitals.js
21│ ├── routes.js
22│ ├── setupTests.js
23│ └── store.js
24└── 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.tsx
17│ ├── App.tsx
18│ ├── _nav.tsx
19│ ├── index.tsx
20│ ├── react-app-env.d.ts
21│ ├── reportWebVitals.ts
22│ ├── routes.ts
23│ ├── setupTests.ts
24│ └── store.ts
25└── package.json

This is the most basic form of CoreUI React Admin Templates.

On this page