You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
460 B

7 years ago
---
id: faq-structure
title: File Structure
permalink: docs/faq-structure.html
layout: docs
category: FAQ
---
### Is there a recommended way to structure React projects?
One common way to structure projects is locate CSS, JS, and tests together inside folders grouped by feature or route.
7 years ago
```
FeatureA
index.js
ComponentA.js
ComponentA.css
7 years ago
ComponentA.test.js
Helper.js
7 years ago
Helper.test.js
FeatureB
index.js
ComponentB.js
ComponentB.test.js
7 years ago
```