There is a built React project with the following file structure: img or:
dist
| assets
| | css
| | | appPage.blablabla.css
| | img
| | | mainPanel
| | | palettePanel
| | | structuralPanel
| | | workingSpace
| js
| | appPage.blablabla.js
| app.html
app.html - main html file
js - folder with js file
assets - foler with folders with some static files
How can I include it to my django app?
You must manually configure the react app with webpack if you wish to have the react app in your Django folder. Or you can host it as a static website by running npm run build in react project and put build folder to static folder in your Django folder. Or you can separate both. As server and client.