diff options
author | crupest <crupest@outlook.com> | 2021-06-15 16:23:44 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-06-15 16:23:44 +0800 |
commit | ddce03a67708249eec129eb36744be460345bd75 (patch) | |
tree | 58417f657467e89d06c58b848db621c021803254 /FrontEnd/src/index.tsx | |
parent | e0b766203d7576ab67b16ba556ba14120d0bc876 (diff) | |
download | timeline-ddce03a67708249eec129eb36744be460345bd75.tar.gz timeline-ddce03a67708249eec129eb36744be460345bd75.tar.bz2 timeline-ddce03a67708249eec129eb36744be460345bd75.zip |
...
Diffstat (limited to 'FrontEnd/src/index.tsx')
-rw-r--r-- | FrontEnd/src/index.tsx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/FrontEnd/src/index.tsx b/FrontEnd/src/index.tsx index fb0c8899..83c25792 100644 --- a/FrontEnd/src/index.tsx +++ b/FrontEnd/src/index.tsx @@ -3,17 +3,19 @@ import "core-js/modules/es.promise"; import "core-js/modules/es.array.iterator"; import "pepjs"; +import "bootstrap/dist/css/bootstrap.css"; +import "bootstrap-icons/font/bootstrap-icons.css"; + import React from "react"; import ReactDOM from "react-dom"; -import "./index.sass"; +import "./index.css"; import "./i18n"; +import "./palette"; import App from "./App"; -import "./palette"; - import { userService } from "./services/user"; void userService.checkLoginState(); |