diff --git a/webapp/src/App.tsx b/webapp/src/App.tsx index ef41e4f..4782a9a 100644 --- a/webapp/src/App.tsx +++ b/webapp/src/App.tsx @@ -15,11 +15,12 @@ import { selectModelFromStorage, } from "./AppComponents/storage"; import { WorkbookState } from "./components/workbookState"; +import { IronCalcIcon } from "./icons"; function App() { const [model, setModel] = useState(null); const [workbookState, setWorkbookState] = useState( - null, + null ); useEffect(() => { @@ -51,7 +52,12 @@ function App() { }, []); if (!model || !workbookState) { - return Loading; + return ( + + +
Loading IronCalc
+
+ ); } // We try to save the model every second @@ -112,9 +118,11 @@ const Wrapper = styled("div")` const Loading = styled("div")` height: 100%; display: flex; + flex-direction: column; align-items: center; justify-content: center; - font-size: 36px; + font-family: 'Inter'; + font-size: 14px; `; export default App;