ninja-nanz / boilerplate-react-redux

Simple base for React/Redux

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

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

About

Simple base for React/Redux


Languages

Language:JavaScript 88.9%Language:HTML 6.5%Language:CSS 4.6%