A minimalistic React/Redux starter project
To use:
- Fork this repo
- Rename your repo according to the app you're building
git clone https://github.com/[your-org]/[your-app].git
cd [your-app] && npm i
This is the structure of this boilerplate:
.
├── client
│ ├── actions
│ │ └── index.js
│ ├── components
│ │ ├── AddWord.jsx
│ │ ├── App.jsx
│ │ ├── Word.jsx
│ │ └── Words.jsx
│ ├── reducers
│ │ ├── index.js
│ │ └── words.js
│ └── index.js
├── public
│ ├── index.html
│ └── main.css
├── server
│ ├── index.js
│ └── server.js
├── .gitignore
├── package.json
├── README.md
└── webpack.config.js