aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/pages/timeline/TimelineLoading.tsx
blob: f876cba91bf9b262eb9f71bc016129e0133c0530 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import * as React from "react";

import TimelineEmptyItem from "./TimelineEmptyItem";

const TimelineLoading: React.FC = () => {
  return (
    <TimelineEmptyItem
      className="timeline-top-loading-enter"
      height={100}
      center="loading"
      startSegmentLength={56}
    />
  );
};

export default TimelineLoading;