This is where our React source files live.
- The 2 files in the root of this directory are Webpack entry points. These files are the starting point for our React apps.
- The
common
folder is where shared, custom components should live. - The
data
folder is where React contexts live. See: https://react.dev/learn/passing-data-deeply-with-context - The capitalized folders, like
Admin
andMain
are "app" folders.admin.jsx
mainly uses theAdmin
folder (/admin
),main.jsx
usesMain
(/main
); the lower-cased folders are communal.