diff options
| author | MetaCubeX <[email protected]> | 2022-11-03 12:09:10 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-11-03 12:09:10 +0800 |
| commit | 908a2c5251d2bf236df97e2c79b27f699b5b6d39 (patch) | |
| tree | e3fae28002c198779bc2b8255ae01ee69edb2be9 /src/components/StyleGuide.tsx | |
| parent | 89e8f0c6a3a7399e05a5934c3fdabcbe0b96d5ae (diff) | |
| parent | bb5eff27eba3f40ecf43f0f72b19802cc0b5c311 (diff) | |
Merge pull request #5 from kaniwow/master
fix and feat
Diffstat (limited to 'src/components/StyleGuide.tsx')
| -rw-r--r-- | src/components/StyleGuide.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/StyleGuide.tsx b/src/components/StyleGuide.tsx index ee38697..aba3110 100644 --- a/src/components/StyleGuide.tsx +++ b/src/components/StyleGuide.tsx @@ -50,14 +50,14 @@ class StyleGuide extends PureComponent { </Pane> {/* @ts-expect-error ts-migrate(2741) FIXME: Property 'style' is missing in type '{ children: E... Remove this comment to see the full error message */} <Pane> - <ToggleSwitch name="test" options={optionsRule} value="Rule" onChange={noop} /> + <ToggleSwitch name='test' options={optionsRule} value='Rule' onChange={noop} /> </Pane> {/* @ts-expect-error ts-migrate(2741) FIXME: Property 'style' is missing in type '{ children: E... Remove this comment to see the full error message */} <Pane> - <Button text="Test Lxatency" start={<Zap size={16} />} /> - <Button text="Test Lxatency" start={<Zap size={16} />} isLoading /> - <Button label="Test Lxatency" /> - <Button label="Button Plain" kind="minimal" /> + <Button text='Test Lxatency' start={<Zap size={16} />} /> + <Button text='Test Lxatency' start={<Zap size={16} />} isLoading /> + <Button label='Test Lxatency' /> + <Button label='Button Plain' kind='minimal' /> </Pane> <Pane style={{ paddingLeft: 20 }}> <Loading /> |
