Skip to content

dev-academy-challenges/boilerplate-react-redux

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

71 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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