Library Name | Purpose |
---|---|
clsx | To work better with className |
react-router-dom | To routing your website |
customize-cra | To config webpack |
css-normalize | To normalize css |
sass | Scss syntax |
axios | Work with api |
react-toastify | Make toast notification |
babel-plugin-module-resolver | To import with alias |
- Clone the back-end repository: https://github.com/CLM-TTTB/clm-service
- Clone this project
- Run
yarn
ornpm install
- Run
yarn start
ornpm start
to start project
When you want to import something in src folder, you can use alias like this:
// ~/ this mean that you import from src folder (src/components/Test)
import Test from '~/components/Test';
// instead of
import Test from '../components/Test';