This is the fifth task for the React course. first for Next.js
Objective:
Instructions:
Create a todo list application using Next.js
• Fetch your todo items from this [API](<https://jsonplaceholder.typicode.com/todos>).
• You should be able to create a new item to your todo list.
• You should be able to edit an existing item in your todo list.
• You should be able to delete an existing item from your todo list.
• Your project should have a view todo item screen.
• Your project should be modularised.
• Utilise app based routing for your application.
• Style your application using tailwind css and make sure it looks presentable and responsive.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev