import React, { PureComponent } from 'react'; import { Zap } from 'react-feather'; import SwitchThemed from './SwitchThemed'; import ToggleSwitch from './ToggleSwitch'; import Input from './Input'; import Button from './Button'; import { LoadingDot } from './shared/Basic'; const noop = () => { /* empty */ }; const paneStyle = { padding: '20px 0', }; const optionsRule = [ { label: 'Global', value: 'Global', }, { label: 'Rule', value: 'Rule', }, { label: 'Direct', value: 'Direct', }, ]; const Pane = ({ children, style }) => (
{children}
); function useToggle(initialState = false) { const [onoff, setonoff] = React.useState(initialState); const handleChange = React.useCallback(() => { setonoff((x) => !x); }, []); return [onoff, handleChange]; } function SwitchExample() { const [checked, handleChange] = useToggle(false); return ; } class StyleGuide extends PureComponent { render() { return (
); } } export default StyleGuide;