aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/app/views/timeline-common/TimelineLoading.tsx
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-04-15 16:30:24 +0800
committercrupest <crupest@outlook.com>2021-04-15 16:30:24 +0800
commit3bfc6012eb2b66ce33e85440e24a595c677dd842 (patch)
tree9dfda1935d59641deaf76464cf16f3f520e26b1c /FrontEnd/src/app/views/timeline-common/TimelineLoading.tsx
parent7bd88329608cf3b88784be87e5b501a04e0b342a (diff)
downloadtimeline-3bfc6012eb2b66ce33e85440e24a595c677dd842.tar.gz
timeline-3bfc6012eb2b66ce33e85440e24a595c677dd842.tar.bz2
timeline-3bfc6012eb2b66ce33e85440e24a595c677dd842.zip
...
Diffstat (limited to 'FrontEnd/src/app/views/timeline-common/TimelineLoading.tsx')
-rw-r--r--FrontEnd/src/app/views/timeline-common/TimelineLoading.tsx18
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;