diff options
author | crupest <crupest@outlook.com> | 2021-04-15 16:30:24 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-04-15 16:30:24 +0800 |
commit | 2300b6ed25600c7c1f01ef44f7390e82119644a8 (patch) | |
tree | d992acafbdeaad1529599a80b5236dbf752f6db0 /FrontEnd/src/app/views/timeline-common/TimelineLoading.tsx | |
parent | bd698ebcd496e992cd5b9fa9d55c9d55d1e3b6f8 (diff) | |
download | timeline-2300b6ed25600c7c1f01ef44f7390e82119644a8.tar.gz timeline-2300b6ed25600c7c1f01ef44f7390e82119644a8.tar.bz2 timeline-2300b6ed25600c7c1f01ef44f7390e82119644a8.zip |
...
Diffstat (limited to 'FrontEnd/src/app/views/timeline-common/TimelineLoading.tsx')
-rw-r--r-- | FrontEnd/src/app/views/timeline-common/TimelineLoading.tsx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/FrontEnd/src/app/views/timeline-common/TimelineLoading.tsx b/FrontEnd/src/app/views/timeline-common/TimelineLoading.tsx new file mode 100644 index 00000000..fc42f4b4 --- /dev/null +++ b/FrontEnd/src/app/views/timeline-common/TimelineLoading.tsx @@ -0,0 +1,18 @@ +import React from "react"; + +import TimelineTop from "./TimelineTop"; + +const TimelineLoading: React.FC = () => { + return ( + <TimelineTop + className="timeline-top-loading-enter" + height={100} + lineProps={{ + center: "loading", + startSegmentLength: 56, + }} + /> + ); +}; + +export default TimelineLoading; |