https://www.loom.com/share/3df7fcb5424644638b00724cb178e2ff
Thanks for taking the time to complete the Every.io code challenge. Don't worry, it's not too hard, and please do not spend more than an hour or two. We know you have lots of these to do, and it can be very time consuming. If you feel like adding fancy animations, or getting all hip and fresh with the design, go ahead, but it won't earn you any extra points.
The biggest factor will be your code:
- How readable is your code.
- How did you organize your components.
- Are there any bugs.
Feel free to fork this repo. If you want to keep things private, that's understandable and we are totally okay with that. Once you finish send an invite to these users:
- @barrypeterson
- @jmatusevich
- @falecci
- @danfsd
- @mssodhi
See the prototype for an example.
You will be creating a basic todo list, with the following requirements.
- Todo
- In Progress
- Done
The right arrow moves the list item to the next column:
- Todo to In Progress
- In Progress to Done
The Left arrow moves the list item to the previous column:
- Done to In Progress
- In Progress to Todo
- If the list item is in the first column, the left button should be disabled
- If the list item is in the last column, the right button should be disabled
There should be a form with a text input below the columns. When the user submits the form, the text from the text input should be added to a new todo item in the first column.
- React 18
- Vite
- TypeScript
- Tailwind CSS
- Vitest
- ESLint
- Node.js (latest LTS version recommended)
- npm
npm installStart the development server:
npm run devThe app will be available at http://localhost:3000
Build for production:
npm run buildRun tests:
npm run testRun tests with UI:
npm run test:uinpm run preview├── src/
│ ├── App.tsx # Main App component
│ ├── ChallengeComponent.tsx # Challenge component (add your code here)
│ ├── main.tsx # App entry point
│ ├── index.css # Global styles with Tailwind
│ └── setupTests.ts # Test setup
├── index.html # HTML template
├── vite.config.ts # Vite configuration
├── tailwind.config.js # Tailwind CSS configuration
├── postcss.config.js # PostCSS configuration
└── tsconfig.json # TypeScript configuration