18 lines
359 B
TypeScript
18 lines
359 B
TypeScript
import React, { memo } from 'react';
|
|
import { Box } from '@chakra-ui/react';
|
|
|
|
const Loading = () => {
|
|
return (
|
|
<Box
|
|
w={'100%'}
|
|
h={'80px'}
|
|
backgroundImage={'url("/imgs/loading.gif")'}
|
|
backgroundSize={'contain'}
|
|
backgroundRepeat={'no-repeat'}
|
|
backgroundPosition={'center'}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default memo(Loading);
|