React Build Structure
Let's examine the basic structure of the project
build. If you look inside the
build folder, you will see the
file index.html and the folder static.
Let's study their purpose.
The file index.html is the
main file of the site that will
run in the browser. It contains
the initial project layout and the connection of
script and style files.
The folder static contains scripts (the js folder),
styles (the css folder), and media files (images, etc., the media folder)
Study the build structure of your project.