You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
393 B
20 lines
393 B
2 years ago
|
import React from 'react';
|
||
|
import { Button } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<div className="site-button-ghost-wrapper">
|
||
|
<Button type="primary" ghost>
|
||
|
Primary
|
||
|
</Button>
|
||
|
<Button ghost>Default</Button>
|
||
|
<Button type="dashed" ghost>
|
||
|
Dashed
|
||
|
</Button>
|
||
|
<Button type="primary" danger ghost>
|
||
|
Danger
|
||
|
</Button>
|
||
|
</div>
|
||
|
);
|
||
|
|
||
|
export default App;
|