![]() |
VOOZH | about |
Managing your tasks is one of the most important things in a hectic routine. In this article, we will see step-by-step procedure of creating a task manager app from scratch.
Output Preview: Let us have a look at how the final output will look like.
Step 1: Create a new Next.js project using the following command
npx create-next-app task-manager-appStep 2: Change to the project directory:
cd task-manager-appThe updated Dependencies in package.json file will look like:
"dependencies": {
"react": "^18",
"react-dom": "^18",
"next": "14.1.0"
}
Example: Create the required files as seen on folder structure and paste the code components as per the structure.
Steps to run the application:
Step 1: Run this command to start the application:
npm run devStep 2: Visit the URL:
http://localhost:3000Output: