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
Right now there is a lot in src.
src
assets and scripts are the folders I am least confident on right now. assets contains css for a reset, and scripts could be utilities.
assets
scripts
utilities
@dominikwilkowski any thoughts on this stucture? Do you have any open source examples you are basing the current directory structure off?
src ├── assets │ └── reset.js ├── index.js ├── App.js ├── tokens │ ├── index.js │ └── colors.js ├── layers │ ├── Example1.js │ ├── Example2.js │ ├── Example3.js │ └── index.js ├── scripts │ ├── generateConfig.js │ ├── serviceWorker.js │ └── storage.js ├── routes │ ├── Settings │ │ └── Settings.js │ ├── About │ │ └── About.js │ ├── Editor │ │ ├── Editor.js │ │ ├── Canvas.js │ │ ├── CanvasItem.js │ │ ├── CanvasList.js │ │ ├── LayerSelector.js │ │ ├── Sidebar.js │ │ ├── index.js │ │ └── Phrase.js │ └── index.js └── components ├── ThemeBtn.js ├── Header.js ├── Navigation.js └── index.js
The text was updated successfully, but these errors were encountered:
I like it and I would add a primitives folder next to components.
primitives
components
Sorry, something went wrong.
No branches or pull requests
Right now there is a lot in
src
.assets
andscripts
are the folders I am least confident on right now.assets
contains css for a reset, andscripts
could beutilities
.@dominikwilkowski any thoughts on this stucture? Do you have any open source examples you are basing the current directory structure off?
The text was updated successfully, but these errors were encountered: