1.2.0 • Published 7 years ago

silhouette-plugin-redux v1.2.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

Redux Plugin for Silhouette

This plugin embeds a configurable redux store into Silhouette.

import { create }  from 'silhouette-core'
import reduxPlugin from 'silhouette-plugin-redux'

const sil = create(reduxPlugin({
    // all properties are optional
    enhancers: [],
    middleware: [],
    compose: function(...fs){ },
    state: {},
}));