File Structure Example - GodofKim/new-friendrop GitHub Wiki
app $ tree
.
├── components
│ ├── Note
│ │ ├── Note.jsx
│ │ ├── index.js
│ │ ├── note.css
│ │ └── note_test.jsx
│ ├── Routes
│ │ ├── Routes.jsx
│ │ ├── index.js
│ │ └── routes_test.jsx
│ └── index.js
├── index.jsx
├── main.css
└── views
├── Home
│ ├── Home.jsx
│ ├── home.css
│ ├── home_test.jsx
│ └── index.js
├── Register
│ ├── Register.jsx
│ ├── index.js
│ ├── register.css
│ └── register_test.jsx
└── index.js