aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/app/views/common/LoadingPage.tsx
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-09-02 22:36:04 +0800
committercrupest <crupest@outlook.com>2020-09-02 22:36:04 +0800
commit20d5614b6048873d5993ffa493f1b254fe8c73c1 (patch)
tree1c308287f6cd2333ea8ffabb32ee3438e9943b45 /Timeline/ClientApp/src/app/views/common/LoadingPage.tsx
parentf70e638be0e1938be31a127fb93acf0be9e5c6c1 (diff)
downloadtimeline-20d5614b6048873d5993ffa493f1b254fe8c73c1.tar.gz
timeline-20d5614b6048873d5993ffa493f1b254fe8c73c1.tar.bz2
timeline-20d5614b6048873d5993ffa493f1b254fe8c73c1.zip
...
Diffstat (limited to 'Timeline/ClientApp/src/app/views/common/LoadingPage.tsx')
-rw-r--r--Timeline/ClientApp/src/app/views/common/LoadingPage.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Timeline/ClientApp/src/app/views/common/LoadingPage.tsx b/Timeline/ClientApp/src/app/views/common/LoadingPage.tsx
index a849126d..590fafa0 100644
--- a/Timeline/ClientApp/src/app/views/common/LoadingPage.tsx
+++ b/Timeline/ClientApp/src/app/views/common/LoadingPage.tsx
@@ -1,10 +1,10 @@
import React from "react";
-import { Spinner } from "reactstrap";
+import { Spinner } from "react-bootstrap";
const LoadingPage: React.FC = () => {
return (
<div className="position-fixed w-100 h-100 d-flex justify-content-center align-items-center">
- <Spinner style={{ height: "2.5rem", width: "2.5rem" }} color="primary" />
+ <Spinner variant="primary" animation="border" />
</div>
);
};