Skip to content

Instantly share code, notes, and snippets.

@marshallmurphy
Created May 3, 2020 23:26
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 marshallmurphy/9960b782fcdc9064ec418900c4fc4a1d to your computer and use it in GitHub Desktop.
Save marshallmurphy/9960b782fcdc9064ec418900c4fc4a1d to your computer and use it in GitHub Desktop.
import React, { useState } from 'react';
import styles from './toggleRow.module.css';
const ToggleRow = ({ option }) => {
const [active, setActive] = useState(false);
return (
<div className={styles.toggleRow}>
{option}
<label className={styles.toggle} tabIndex='0'> // add to tab order
<input
className={styles.toggleInput}
type='checkbox'
checked={active}
onChange={() => setActive(!active)}
tabIndex='-1' // remove from tab order
/>
<span className={styles.toggleSlider}></span>
</label>
</div>
)
}
export default ToggleRow;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment