Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created June 20, 2019 10:38
Show Gist options
  • Save indreklasn/5a2661a98e3501be5081d53bd2475df0 to your computer and use it in GitHub Desktop.
Save indreklasn/5a2661a98e3501be5081d53bd2475df0 to your computer and use it in GitHub Desktop.
import React from "react";
import { useSelector, useDispatch } from "react-redux";
import { TOGGLE } from "./UiReducer";
const Toggle = () => {
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>
);
};
export default Toggle;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment