Skip to content

Instantly share code, notes, and snippets.

View brandonkoopa's full-sized avatar

Brandon Cooper brandonkoopa

  • Landy Land
  • Austin
View GitHub Profile
@brandonkoopa
brandonkoopa / SwitchComponent.js
Last active March 6, 2019 20:37
Switch React Component
import styled from 'styled-components';
// Example usage:
/*
<StyledSwitch>
<input type="checkbox" name="isSwitched" checked={this.state.isSwitched} onChange={(e) => console.log('update isSwitched')} />
<div className="slider round"/>
</StyledSwitch>
*/