16 lines
251 B
TypeScript
16 lines
251 B
TypeScript
import { Spin } from 'antd';
|
|
|
|
export function GlobalSpin() {
|
|
return (
|
|
<Spin
|
|
size='large'
|
|
style={{
|
|
position: 'fixed',
|
|
top: '50%',
|
|
left: '50%',
|
|
transform: 'translate(-50%, -50%)',
|
|
}}
|
|
/>
|
|
);
|
|
}
|