Repository for final in IT's Tinkoff Solution Cup
First we must install the packages we depend on
yarn install
To create a production build of a React application, we need to run command
yarn run build
After installing dependencies, we can run local static server
yarn run preview
After that, you can open the application in browser by http://localhost:8080/
To run an application in development mode with HMR
yarn run dev
After that, you can open the application in browser by http://localhost:8080/
To run tests
yarn run test
To check the quality of code, we use the linter (ESLint)
yarn run lint