12 lines
233 B
TypeScript
12 lines
233 B
TypeScript
import { LoadingOutlined } from '@ant-design/icons';
|
|
import React from 'react';
|
|
|
|
export const Loading: React.FC = React.memo(() => {
|
|
return (
|
|
<div>
|
|
<LoadingOutlined />
|
|
</div>
|
|
);
|
|
});
|
|
Loading.displayName = 'Loading';
|