# File Structure

Within the download you'll find the following directory and file structure:

React/
├── README.md
├── public
├── src/
│	├── actions/
│	├── assets/
│	│	├── css/
│	│	└── images/
│	├── components/
│	├── config/
│	├── data/
│	├── layouts/
│	├── partials/
│	├── reducers/
│	├── routes/
│	├── services/
│	├── utilities/
│	├── views/
│	├── App.js
│	├── config.js
│	├── index.css
│	├── index.js
│	└── ...
├── craco.config.js
├── package.json
├── tailwind.config.js
└── ...

# Installation

# Prerequisites

Please install following prerequisites before setup:

# Setup

Download the package. On React directory:

yarn

This will install all the node packages.

# Builds

You can run the following commands to build for development or production use.

# Development

yarn dev

# Production

yarn build