diff options
author | crupest <crupest@outlook.com> | 2022-04-10 16:04:03 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-04-10 16:04:03 +0800 |
commit | 928ba0ce419bacba113951095278a5138ead34cf (patch) | |
tree | ad4bc6b985c21e751199a25a77f36da7163a47c5 /FrontEnd/src/views/timeline/TimelineLoading.tsx | |
parent | 86160e4a5697615452a7e06dc78f8be4c8b2515f (diff) | |
download | timeline-928ba0ce419bacba113951095278a5138ead34cf.tar.gz timeline-928ba0ce419bacba113951095278a5138ead34cf.tar.bz2 timeline-928ba0ce419bacba113951095278a5138ead34cf.zip |
...
Diffstat (limited to 'FrontEnd/src/views/timeline/TimelineLoading.tsx')
-rw-r--r-- | FrontEnd/src/views/timeline/TimelineLoading.tsx | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/FrontEnd/src/views/timeline/TimelineLoading.tsx b/FrontEnd/src/views/timeline/TimelineLoading.tsx new file mode 100644 index 00000000..f55482fe --- /dev/null +++ b/FrontEnd/src/views/timeline/TimelineLoading.tsx @@ -0,0 +1,16 @@ +import 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; |