Our React frontend directory structure is fairly straightforward:
.
├── App.css
├── App.js
├── App.test.js
├── components
│ ├── bot
│ │ └── bot.jsx
│ ├── chatpanel
│ │ ├── chatpanel.css
│ │ └── chatpanel.jsx
│ └── talkinghead
│ ├── shakespeare.png
│ ├── talkinghead.css
│ └── talkinghead.jsx
├── css
│ ├── parchment.jpg
│ └── styles.css
├── index.css
├── index.js
├── logo.svg
├── serviceWorker.js
└── setupTests.js...