Skip to content

Instantly share code, notes, and snippets.

@idmontie
Created April 17, 2018 23:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save idmontie/97e03fc78e7343e8c3ac94c56d101762 to your computer and use it in GitHub Desktop.
Save idmontie/97e03fc78e7343e8c3ac94c56d101762 to your computer and use it in GitHub Desktop.
const Switch = ({ on, onToggle }) => (
<label className={styles.switch} onClick={onToggle}>
<input
checked={on}
type="checkbox"
/>
<span className={styles.slider} />
</label>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment