Skip to content

Instantly share code, notes, and snippets.

@rubenmarcus
Created March 25, 2020 21:16
Show Gist options
  • Save rubenmarcus/004fa36e36dc3b8a71a7bc37a9264991 to your computer and use it in GitHub Desktop.
Save rubenmarcus/004fa36e36dc3b8a71a7bc37a9264991 to your computer and use it in GitHub Desktop.
const Toggle = ({ toggleSwitch }) => {
const ui = useSelector(state => state.ui);
const dispatch = useDispatch();
return (
<div>
<div>{JSON.stringify(ui)}</div>
<input
type="checkbox"
value={ui.toggle}
onChange={() => dispatch({ type: TOGGLE })}
/>
</div>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment