- Follow the .prettierrc (Prettier autoformats on save, use it)
- Don't use
function Component(){ // ... }
- instead use
const Component = () => { // ... }
To run this project on your local machine,
- Install all the required dependencies using
yarn install
- and start the react app using
yarn dev
