diff options
author | crupest <crupest@outlook.com> | 2020-09-02 22:36:04 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-09-02 22:36:04 +0800 |
commit | 20d5614b6048873d5993ffa493f1b254fe8c73c1 (patch) | |
tree | 1c308287f6cd2333ea8ffabb32ee3438e9943b45 /Timeline/ClientApp/src/app/views/common/LoadingPage.tsx | |
parent | f70e638be0e1938be31a127fb93acf0be9e5c6c1 (diff) | |
download | timeline-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.tsx | 4 |
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> ); }; |