Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 612 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 612 Bytes

Next.js redux boilerplate using redux, react-redux, redux-thunk, next-redux-wrapper and redux-devtools-extension

Getting Started

First, run the development server:

npm run dev
# or
yarn dev

Open http://localhost:3000 with your browser to see the result.

Project Structure

├── pages
│   ├── _app.js
│   └── index.js
└── store
    ├── actions
    │   └── postAction.js
    ├── reducers
    │   ├── index.js
    │   └── postReducer.js
    ├── store.js
    └── types.js