Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/anthonyharold67/react-todoapp-uuid


https://github.com/anthonyharold67/react-todoapp-uuid

Last synced: 24 days ago
JSON representation

Awesome Lists containing this project

README

        

# Not

Responsive ayar için [videoya](https://www.youtube.com/watch?v=xraGQZIIu3M&list=PLI1eEv8mXfz7flUjx3_wujNiat7zup9HX&index=1) ek olarak kodlara bootstrap col yapısı eklendi. Yapılan değişiklikler:

1. Header Componentinde return kısmı aşağıdaki gibi güncellendi.
```jsx
return (


Todo App




setTask(e.target.value)}
/>

Add Todo




);
```

2. TodoList Componentinde return kısmı aşağıdaki gibi güncellendi.
```jsx
return (


Todos



{todos.map((todo) => (
toggleTodo(todo.id)}
>

{todo.text}

deleteTodo(todo.id)}
className="bi bi-trash-fill"
viewBox="0 0 16 16"
>



))}


);
```