How to structure a React project for stock management?

12 hours ago 3
ARTICLE AD BOX

I'm building a stock management project using React (with Redux-Toolkit).

My project includes:

Products Product variants Categories Stock management (add / remove / update quantity) Forms (create/edit) API backend (Laravel)

Right now my structure is confusing and I'm not sure if I'm organizing it in the best way.

My current structure looks like this:

src/ components/ pages/ features/ redux/ services/

My questions:

What is the best folder structure for this kind of project? Should I separate features (product, variant, stock) or use pages/components only? How do professionals usually organize similar projects?

Any best practices or examples would help a lot.

Read Entire Article