diff options
Diffstat (limited to 'FrontEnd/src/App.tsx')
-rw-r--r-- | FrontEnd/src/App.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FrontEnd/src/App.tsx b/FrontEnd/src/App.tsx index 78e8a146..18f6cd97 100644 --- a/FrontEnd/src/App.tsx +++ b/FrontEnd/src/App.tsx @@ -1,4 +1,4 @@ -import React, { ReactElement } from "react"; +import React from "react"; import { BrowserRouter, Route, Routes } from "react-router-dom"; import AppBar from "./views/common/AppBar"; @@ -20,7 +20,7 @@ const NoMatch: React.FC = () => { return <div>Ah-oh, 404!</div>; }; -function App(): ReactElement | null { +function App(): JSX.Element { const user = useUser(); return ( |