diff --git a/src/App.tsx b/src/App.tsx index 18ac09d..a8ae4d9 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -5,9 +5,15 @@ import { Routes, Route } from "react-router-dom"; import axios from "axios"; import { initializeApp } from "firebase/app"; import { setPersistence, getAuth, inMemoryPersistence } from "firebase/auth"; -import { useLogin, LoadingScreen, AuthProvider } from "@hex-labs/core"; +import { + useLogin, + LoadingScreen, + AuthProvider, + Header, + Footer, +} from "@hex-labs/core"; -import UserData from './components/UserData'; +import UserData from "./components/UserData"; // a little bee ascii art // const art = @@ -46,16 +52,18 @@ export const App = () => { // Sets up the AuthProvider so that any part of the application can use the // useAuth hook to retrieve the user's login details. + // header and footer from core package return ( +
{/* Setting up our React Router to route to all the different pages we may have */} } /> - +