Skip to content

Latest commit

 

History

History
41 lines (35 loc) · 922 Bytes

README.md

File metadata and controls

41 lines (35 loc) · 922 Bytes

A starter project for React/Redux

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