# Getting Started

## Installation

- Create a `.npmrc` file from the `.npmrc.template` example provided in the repo.
- Replace `TOKEN` with your own [Github Personal Access Token](https://docs.github.com/en/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token) with `read:packages` permission **ONLY**
- Use `yarn` to install project dependencies.

## Import style guideline

- Always use **relative imports** (e.g., `../utils/helper` or `./myComponent`).
- Do **NOT** use **absolute imports** (e.g., `src/...`, `@/...`, etc).
