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.
23 lines
398 B
23 lines
398 B
2 years ago
|
import React from 'react';
|
||
|
import { Button } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<>
|
||
|
<Button type="primary" danger>
|
||
|
Primary
|
||
|
</Button>
|
||
|
<Button danger>Default</Button>
|
||
|
<Button type="dashed" danger>
|
||
|
Dashed
|
||
|
</Button>
|
||
|
<Button type="text" danger>
|
||
|
Text
|
||
|
</Button>
|
||
|
<Button type="link" danger>
|
||
|
Link
|
||
|
</Button>
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
export default App;
|