Skip to content

Instantly share code, notes, and snippets.

@intojs
Created March 7, 2021 15:09
Show Gist options
  • Save intojs/e3c982fe91e2b548a809ef8b2e021afe to your computer and use it in GitHub Desktop.
Save intojs/e3c982fe91e2b548a809ef8b2e021afe to your computer and use it in GitHub Desktop.
const MVCComponent = () => {
const [model, dispatch] = useReducer(reducer, initialModel);
const handleEvent = () => {
dispatch(action);
};
return <View model={model} handleEvent={handleEvent} />;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment