DEV Community

Cover image for My React js Todo App
Mishab Ka
Mishab Ka

Posted on

My React js Todo App

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

preview photos

Image description

Image description
Image description
Image description

Top comments (2)

Collapse
 
pulimoodan profile image
Akbar Ali

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.

Collapse
 
pulimoodan profile image
Akbar Ali • Edited

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
Result