import React, { PureComponent } from 'react'; import { Zap } from 'react-feather'; import Loading from 'src/components/Loading'; import Button from './Button'; import Input from './Input'; import SwitchThemed from './SwitchThemed'; import ToggleSwitch from './ToggleSwitch'; 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 (
{/* @ts-expect-error ts-migrate(2741) FIXME: Property 'style' is missing in type '{ children: E... Remove this comment to see the full error message */} {/* @ts-expect-error ts-migrate(2741) FIXME: Property 'style' is missing in type '{ children: E... Remove this comment to see the full error message */} {/* @ts-expect-error ts-migrate(2741) FIXME: Property 'style' is missing in type '{ children: E... Remove this comment to see the full error message */} {/* @ts-expect-error ts-migrate(2741) FIXME: Property 'style' is missing in type '{ children: E... Remove this comment to see the full error message */}
); } } export default StyleGuide;