UNPKG

pubsweet-component-wax

Version:

PubSweet component for the Wax collaborative document editor

17 lines (13 loc) 312 B
import React from 'react' import { State } from 'react-powerplug' const statefull = props => { const { render } = props return ( <State initial={{ pauseUpdates: false }}> {({ state, setState }) => { return render({ state, setState }) }} </State> ) } export default statefull