mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 09:49:57 +08:00
f35738fd8c
* demo: update demo * Update components/select/index.zh-CN.md Co-authored-by: afc163 <afc163@gmail.com> Signed-off-by: lijianan <574980606@qq.com> --------- Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: afc163 <afc163@gmail.com>
28 lines
989 B
TypeScript
28 lines
989 B
TypeScript
import React from 'react';
|
|
import { Flex, Radio } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<Flex vertical gap="middle">
|
|
<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">
|
|
<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">
|
|
<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>
|
|
</Flex>
|
|
);
|
|
|
|
export default App;
|