v0.5.1
Changelog
- Add
render
prop to composed component (thanks @ctrlplusb for the idea) - Improve some types
import { adopt } from 'react-adopt'
import { Value } from 'react-powerplug'
const Composed = adopt({
foo: <Value initial="foo" />
})
const App = () => (
<Composed render={({ foo }) => /* ... */ } />
)