mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 04:58:55 +08:00
16 lines
306 B
TypeScript
16 lines
306 B
TypeScript
import React from 'react';
|
|
import { Button, Flex } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<Flex gap="middle" wrap>
|
|
<Button type="primary" autoInsertSpace={false}>
|
|
确定
|
|
</Button>
|
|
<Button type="primary" autoInsertSpace>
|
|
确定
|
|
</Button>
|
|
</Flex>
|
|
);
|
|
|
|
export default App;
|