From ff1a39d04e53b428e34d46c55ecd6689189b5443 Mon Sep 17 00:00:00 2001 From: Haishan Date: Sat, 31 Oct 2020 18:18:04 +0800 Subject: chore: run ts-migrate --- src/components/StyleGuide.js | 82 -------------------------------------------- 1 file changed, 82 deletions(-) delete mode 100644 src/components/StyleGuide.js (limited to 'src/components/StyleGuide.js') diff --git a/src/components/StyleGuide.js b/src/components/StyleGuide.js deleted file mode 100644 index 5979ee5..0000000 --- a/src/components/StyleGuide.js +++ /dev/null @@ -1,82 +0,0 @@ -import React, { PureComponent } from 'react'; -import { Zap } from 'react-feather'; - -import Button from './Button'; -import Input from './Input'; -import { LoadingDot } from './shared/Basic'; -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 ( -
- - - - - - - - - - -
- ); - } -} - -export default StyleGuide; -- cgit v1.3.1