Getting Started

Install yarn

npm install -g yarn

Install dependencies

yarn

Run the app

yarn start

Code formatting

This project uses prettier and ESLint to format code. Install the prettier and ESLint extensions for your editor.

To automatically format the code every time you save, add the following to your settings.json in the .vscode folder:

{
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
  },
  "editor.formatOnSave": true,
  "editor.defaultFormatter": "esbenp.prettier-vscode"
}