Skip to content

Instantly share code, notes, and snippets.

@anderjs
Last active August 25, 2019 18:18
Show Gist options
  • Save anderjs/d7867e6f33a2333b2f35662357097c3d to your computer and use it in GitHub Desktop.
Save anderjs/d7867e6f33a2333b2f35662357097c3d to your computer and use it in GitHub Desktop.
import React from 'react'
const SwitchButton = () => {
const [state, setState] = React.useState(false)
function onClickSwitchButton() {
setState(state => !state)
}
return (
<button onClick={onClickSwitchButton} role="switch" aria-checked={state}>{state ? 'On' : 'Off'}<button />
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment