$ yarn
$ yarn dev
- All components go in
components/
- All files should be named using
dash-case
- Utility functions go in
lib/
Install
Add the following to your workspace settings .vscode/settings.json
{
"typescript.tsdk": "node_modules/typescript/lib",
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
]
}