nextjs-redux-boilerplate

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

OTHER License

Stars
2

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