- Install dependencies
yarn install
ornpm install
- Start front-end
yarn start
ornpm start
- Output: Web page using
localhost:3000
should open
- Output: Web page using
To start the server, visit babel-sandbox-server and follow the steps in Quick Start.
📂 public # Supplemental assets or resources, or static files 📂 scripts # Small runnables (typically shell scripts) that perform routine tasks 📂 src # Source files ├── 📂 components ├── 📂 semantic-ui │ ├── 📂 site │ │ ├── 📂 collections │ │ ├── 📂 elements │ │ ├── 📂 globals │ │ ├── 📂 modules │ │ ├── 📂 views ├── 📂 state ├── 📂 utils
- Run
yarn lint DIRECTORY
before submitting a PR
Alternatively, run the following command (prefered):
find src -name "*.js" | xargs yarn prettier --write
find src -name "*.js" | xargs yarn lint