nettecode / knowledgeBase

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

knowledgeBase

File structure for applications

src
 |--- assets
 |      |--- images
 |--- components
 |      |--- Navigation
 |      |--- Header
 |      |--- Footer
 |      |--- ...
 |--- containers (views, pages)
 |      |--- Home
 |      |--- ...
 |--- hoc
 |      |--- Layout
 |      |--- ...
 |--- utils
 |--- store (Redux)
 |      |--- actions
 |      |--- reducers
 |--- App.js
 |--- index.js

About