mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-12 12:23:08 +08:00
8 lines
231 B
TypeScript
8 lines
231 B
TypeScript
import React from 'react';
|
|
import { LoadingOutlined } from '@ant-design/icons';
|
|
import { Spin } from 'antd';
|
|
|
|
const App: React.FC = () => <Spin indicator={<LoadingOutlined style={{ fontSize: 24 }} spin />} />;
|
|
|
|
export default App;
|