mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-03 20:49:14 +08:00
99faed814a
Signed-off-by: lijianan <574980606@qq.com>
13 lines
229 B
TypeScript
13 lines
229 B
TypeScript
import React from 'react';
|
|
import { Flex, Spin } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<Flex align="center" gap="middle">
|
|
<Spin size="small" />
|
|
<Spin />
|
|
<Spin size="large" />
|
|
</Flex>
|
|
);
|
|
|
|
export default App;
|