An open API service indexing awesome lists of open source software.

https://github.com/miusuncle/reduck2

Use redux without writing boilerplate code.
https://github.com/miusuncle/reduck2

Last synced: 5 months ago
JSON representation

Use redux without writing boilerplate code.

Awesome Lists containing this project

README

          

# reduck2

Use redux without writing boilerplate code.

## 安装

```sh
npm i -S reduck2
```

## 使用

```js
import { createDuck } from 'reduck2';

const duck = createDuck({
name: 'xxx',
initialState: {
// TODO: declare state here
},
});
```