ArticleSkeleton.tsx 355 B

12345678910111213
  1. import { Divider, Skeleton } from "antd";
  2. const ArticleSkeletonWidget = () => {
  3. return (
  4. <div style={{ paddingTop: "1em" }}>
  5. <Skeleton title={{ width: 200 }} paragraph={{ rows: 1 }} active />
  6. <Divider />
  7. <Skeleton title={{ width: 200 }} paragraph={{ rows: 10 }} active />
  8. </div>
  9. );
  10. };
  11. export default ArticleSkeletonWidget;