Posts

Showing posts from April, 2022

Assignment-16(Todo app with state management)

Image
 Create 3 components ( AddTodo , ToDoList and ToDoCount ) and nest them into Root component. Whenever a new Todo item is added, it should appear in ToDoList component and count need to be updated in ToDoCount Component without page refresh.(Use BehaviourSubject for angular app / Redux for React app)

Assignment-15

Image
 Make an API call to   https://jsonplaceholder.typicode.com/users    and get data to a component. Post names of users into a dropdown and by selecting the name of a specific user, it should display the data of that user as a list below it.