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

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