DEV Community

Discussion on: Better file structure in React projects

Collapse
 
victorocna profile image
Victor Ocnarescu

For a todo app, I would save a todo model with props like name, created on, due on, etc. I also have some validation schemas and initial values. It is similar to mongoose schemas, if you are familiar with it.

Collapse
 
rajshekhar profile image
Rajshekhar

Thank you