cd server
yarn install or npm install
yarn start or npm startcd app
yarn install or npm install
yarn start or npm startImplement a full CRUD cycle for a todo app
A todo object contains a title and a description
{
title: string,
description: string
}Make an api request to the server to get all todos objects and provide a textbox to filter todos by title. You can use a table to show all filtered todos.
- Choose any libraries to make the request
- Don't need to worry about styling
- It is not required to implement create, update delete function in the App