this is my first react js project i am build. it is a add and delete operations i am used this firebase database for this Firebase Firestore. with this make i got more firebase and react js experience 👩💻👨💻
you can check thi now Todo App
and you can check my github profile for more Mishab K a
Top comments (2)
Great work, keep grinding.
It's advisable to maintain a max-width for the list view and maintain the space-between to keep the content more disciplined.
Here, I changed the style of .datas division from this:
.datas {
justify-content: space-around;
display: flex;
}
to this:
.datas {
justify-content: space-between;
display: flex;
max-width: 700px;
margin: auto;
}
and it resulted this