-
Notifications
You must be signed in to change notification settings - Fork 0
Estrutura React
Antônio Ricart edited this page Aug 9, 2020
·
1 revision
Estrutura de pastas de projetos em React devem ser organizadas seguindo esse modelo
Project
├── src
│ ├── index.js
│ ├── App.js
│ ├── Routes.js
│ ├── pages
│ │ └── Users
│ │ │ └── Form
│ │ │ │ └── index.js
│ │ │ │ └── style.css
│ │ │ │ └── components (optional)
│ │ │ └── List
│ │ │ │ └── index.js
│ │ │ │ └── style.css
│ │ │ │ └── components (optional)
│ │ │ └── ...
│ │ └── ...
│ ├── services
│ │ └── api.js
│ │ └── ...
│ ├── global.css (optional)
│ ├── assets (optional)
│ │ └── ...
│ ├── config (optional)
│ │ └── ...
│ ├── components (optional)
│ │ └── ...
│ ├── utils (optional)
│ │ └── …
└── .gitignore