This repo contains a very simple non-interactive Trello board that automatically updates while the web app is open. It is already functional, so you can focus only on the parts that you need to change.
See it running here.
- Build a UI with 3 columns. Each column should have its own separate scroll.
Use CSS Grid if possible. - Render the name of each task instead of its ID. Bonus: Truncate the name using CSS.
- Do not use any additional UI or CSS libraries.
- Do not use any additional state management libraries.
- Try to adhere to the existing project structure if possible.
- Coding style and consistency.
This project contains config for Prettier and ESLint. Be mindful of that. - CSS knowledge.
- HTML semantics.
Feel free to modify any of the existing code. 💁♀️
- Install pnpm if you do not already have it.
- Clone the repo.
- Duplicate
.env.example
and name it.env
. - Install all dependencies with:
pnpm install
- Run the project with:
pnpm dev