import React from 'react';
import { Skeleton, Card } from 'antd';

const Loading:React.FC = () => {
    return <Card>
        <Skeleton active />
        <Skeleton active />
        <Skeleton active />
    </Card>;
        
       
    };
export default Loading;