File tree Expand file tree Collapse file tree 2 files changed +4
-18
lines changed Expand file tree Collapse file tree 2 files changed +4
-18
lines changed Original file line number Diff line number Diff line change @@ -26,9 +26,8 @@ Direct your browser to `http://localhost:3000`.
2626
2727## Directory Structure
2828```
29- ├── client
30- │ └── index.js
31- ├── common
29+ ├── client # Client-side code
30+ ├── common # Shared code between client and server
3231│ ├── css
3332│ ├── fonts
3433│ ├── images
@@ -40,22 +39,10 @@ Direct your browser to `http://localhost:3000`.
4039│ │ ├── middleware # Middleware for redux
4140│ │ ├── reducers # Redux reducers
4241│ │ ├── routes # Routes each have an index.js which exports a react-router Route.
43- │ │ ├── selectors # Selectors for getting state data
4442│ │ └── store # Store configuration for production and dev.
4543│ └── layouts # Layout files to be rendered by the server.
46- ├── nodemon.json
47- ├── package.json
48- ├── server
49- │ ├── config.js
50- │ ├── index.js
51- │ └── server.js
52- ├── webpack
53- │ ├── base.js
54- │ ├── config.js
55- │ ├── development.hot.js
56- │ ├── development.js
57- │ ├── isomorphic.js
58- │ └── production.js
44+ ├── server # Server-side code
45+ ├── webpack # Webpack configuration files
5946```
6047
6148## CSS Modules
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments