React app making

can anyone who has experience in building apps with react share how they go forward in making an app .
I’m always confused in this , like first I should build the structure then apply styling or first I should make a structure and than write logic .

Both approaches make sense.

I’m building a POC right now. I built an app with create-react-app. Then I added stuff I want (redux, sagas, sass, typescript) and then reorganized the file structure the way I want and get the basic infrastructure I need for redux/sagas. Then I’ll start building out the app, section by section. My approach is usually to put in logic and functionality with the bare minimum of styling to begin, and then go back and fine tune the styling later. But you’ll probably find people that do the opposite.

1 Like