We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What is the issue? Basic project structure set up
frontend
.gitignore
../../../../../assets/picture.jpg
src/
src/pages
src/components
src/api
src/utils
App.tsx
/
Layout
Additional resources
The text was updated successfully, but these errors were encountered:
TheHunas
MaximeVergnet
No branches or pull requests
What is the issue?
Basic project structure set up
frontend
(highly recommend using vite), make sure TypeScript is used.gitignore
to make sure secrets don't get pushed to GitHub../../../../../assets/picture.jpg
src/
for file organization (below are some common patterns, but feel free to use whatever feels most organized to you)src/pages
to put page componentssrc/components
to put other smaller componentssrc/api
for API callssrc/utils
for miscellaneous utility functionsApp.tsx
, which should only route to a temporary home page at/
for nowLayout
component that renders general structures like navbars and footers on all routes nested under the same groupAdditional resources
The text was updated successfully, but these errors were encountered: