mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
28 lines
1005 B
TypeScript
28 lines
1005 B
TypeScript
|
import React from 'react';
|
||
|
import { Radio } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<>
|
||
|
<Radio.Group defaultValue="a" size="large">
|
||
|
<Radio.Button value="a">Hangzhou</Radio.Button>
|
||
|
<Radio.Button value="b">Shanghai</Radio.Button>
|
||
|
<Radio.Button value="c">Beijing</Radio.Button>
|
||
|
<Radio.Button value="d">Chengdu</Radio.Button>
|
||
|
</Radio.Group>
|
||
|
<Radio.Group defaultValue="a" style={{ marginTop: 16 }}>
|
||
|
<Radio.Button value="a">Hangzhou</Radio.Button>
|
||
|
<Radio.Button value="b">Shanghai</Radio.Button>
|
||
|
<Radio.Button value="c">Beijing</Radio.Button>
|
||
|
<Radio.Button value="d">Chengdu</Radio.Button>
|
||
|
</Radio.Group>
|
||
|
<Radio.Group defaultValue="a" size="small" style={{ marginTop: 16 }}>
|
||
|
<Radio.Button value="a">Hangzhou</Radio.Button>
|
||
|
<Radio.Button value="b">Shanghai</Radio.Button>
|
||
|
<Radio.Button value="c">Beijing</Radio.Button>
|
||
|
<Radio.Button value="d">Chengdu</Radio.Button>
|
||
|
</Radio.Group>
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
export default App;
|