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 | f476135ddb3031e5e3a93739909f98800f565181 (patch) | |
tree | b9b6169a949ffd90b2e19c54787676cc05235107 /Timeline/ClientApp/src/app/views/common/LoadingPage.tsx | |
parent | ba25e64f3b2ff454c169bd1ad3b164939e016cea (diff) | |
download | timeline-f476135ddb3031e5e3a93739909f98800f565181.tar.gz timeline-f476135ddb3031e5e3a93739909f98800f565181.tar.bz2 timeline-f476135ddb3031e5e3a93739909f98800f565181.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> ); }; |