- React single page application
- Routing done using React Router
- Cron parsing using cronstrue
- Clone the repository and install the dependencies
npm install
- Start the frontend application locally
npm start
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
This project implements SASS via node-sass, as per the suggestion of Create React App's documentation.
The styles for each component are therefore located in their corresponding <component_name>.scss
file.
There's also a utility folder under src/styles
. The folder contains some common variables, mixins and other stuff that is meant to be reused from other SASS files. You import these styles from another .scss file by doing:
@import 'styles/main.scss';
This project is using react-router-dom v4
, have a look at Routes.jsx
which is the file that defines the routes that are available.
Devesh Pawar [email protected] http://github.com/dev2919
This app was bootstraped based on the template provided by create-react-app