alcpereira / 100hunters

Let's goooo
6 stars 11 forks source link

TaskList React component #27

Open alcpereira opened 2 months ago

alcpereira commented 2 months ago

Description

This component should accept an array of Tasks.

We do not have the type for the tasks yet, so you can use a dummy one for now:

type Task = {
  title: string;
  company: string;
  isDone: boolean;
};

Don't worry about Remix part (<Form> for example), this will be handled in a separate task.

It should include good use of semantic HTML.

It should include stylings using Tailwind. Find a nice looking design on Dribble or similar, and build it. Consider light/dark mode too, using the dark: prefix.

ACs

MingJae92 commented 2 months ago

I will take on this issue.