Skip to content

Instantly share code, notes, and snippets.

@ShMcK
Created July 20, 2018 04:12
Show Gist options
  • Save ShMcK/bbefa9baa9ae444a20bd409c04bbbe38 to your computer and use it in GitHub Desktop.
Save ShMcK/bbefa9baa9ae444a20bd409c04bbbe38 to your computer and use it in GitHub Desktop.
xstateful-react-render-prop
import AlarmMachine from './statefulAlarmMachine'
const Clock = () => (
<AlarmMachine
render={({ extstate, setextstate }) => (
<TimeDisplay time={extstate.time} />
)}
/>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment