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
commonfolder is where shared, custom components should live. - The
datafolder is where React contexts live. See: https://react.dev/learn/passing-data-deeply-with-context - The capitalized folders, like
AdminandMainare "app" folders.admin.jsxmainly uses theAdminfolder (/admin),main.jsxusesMain(/main); the lower-cased folders are communal.