DEV Community

Discussion on: How I structure my React.js projects

Collapse
 
ksixen profile image
Altaev Nurzhan

What about css files? Where need to place it?

Collapse
 
madhan_s profile image
Madhan S

CSS/ SASS should be split per component basis and placed in the corresponding component folder with same name as of component (i.e. Header.tsx and Header.css should be placed in src/components/Header) . Global styles or themes should be placed in src/styles folder.