jonashao / simple-redux-example

A web app using create-react-app, redux

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simple Redux Example

Fetching a post using redux in React. Inspired by blog:使用Redux管理你的React应用

Getting start

npm i -g create-react-app

npm install
npm start

File structure

 src
   |-- index.js
   |-- configureStore.js
   |-- constants
   |  `-- actionTypes.js  
   |-- actions
   |  `-- index.js
   |-- reducers
   |  |-- index.js
   |  `-- post.js
   |-- components
   |  `-- Post.js
   `-- containers
      |-- App.js
      `-- DevTools.js
   

About

A web app using create-react-app, redux


Languages

Language:JavaScript 78.6%Language:HTML 21.4%