File Structure
Extract the zip file you received after purchase and you would find the "react" folder in it with exact below files and folders:
├── docs ├── ubold │ ├── package.json => Package json file │ ├── README.md => Create react app read me file │ ├── public │ │ └── index.html │ │ └── favicon.ico │ │ └── manifest.json │ ├── src/ │ │ └── assets │ │ └── fonts => fonts files │ │ └── images => images │ │ └── scss => scss style files │ │ └── components => Reusable components │ │ └── constants => App level constants │ │ └── helpers => Helper Utilities - including fake-backend, api utils, etc │ │ └── hooks => Hooks - Custom hooks │ │ └── layouts │ │ └── Auth => Default layout - having no topbar, sidebar or footer - mainly used in auth pages │ │ └── TwoColumnLayout => Two Column left side bar with light topbar, footer and right side bar │ │ └── DetachedLayout => Detached left side bar with dark topbar, footer and right side bar │ │ └── HorizontalLayout => Horizontal Topbar and top navbar, footer and right side bar │ │ └── VerticalLayout => Left side navbar with topbar, footer and right side bar │ │ │ │ └── locale => i18N - internationalization related file │ │ └── pages => All the pages available in the theme │ │ └── redux => Redux folder containing module wise actions, reducers, sagas, store, etc │ │ └── routes => Application router implementation │ │ └── utils => Common utilities │ ├── App.tsx => Main application component │ ├── i18n.ts => internationalization