Copy Frankenstein/App/.env.example to Frankenstein/App/.env and set any environment variables.
Install the following extensions in your browser:
cd Frankenstein/AppInstall dependencies:
npm installTo run in hot module reloading mode:
npm startTo create a production build:
npm run buildWe use the BEM architectural pattern to write CSS
npm run testPlease see the following Example components as a framework for creating additional components:
.
├── ...
├── src
│ └── components
│ └── TheMonster
│ └── TheMonster.scss # BEM based SCSS
│ └── TheMonster.tsx # Parent functional component
│ └── MonsterEye.tsx # Child functional component
│ └── index.ts # Directory level exports
└── ...