mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
16 lines
361 B
TypeScript
16 lines
361 B
TypeScript
|
import React from 'react';
|
||
|
import { Button } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<>
|
||
|
<Button type="primary">Primary Button</Button>
|
||
|
<Button>Default Button</Button>
|
||
|
<Button type="dashed">Dashed Button</Button>
|
||
|
<br />
|
||
|
<Button type="text">Text Button</Button>
|
||
|
<Button type="link">Link Button</Button>
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
export default App;
|