diff --git a/frontend/src/pages/LogoutPage.jsx b/frontend/src/pages/LogoutPage.jsx index 617ec5c..8512700 100644 --- a/frontend/src/pages/LogoutPage.jsx +++ b/frontend/src/pages/LogoutPage.jsx @@ -1,4 +1,7 @@ +import React from "react"; import { useContext, useEffect } from "react"; +import { Container } from "react-bootstrap"; +import MyNavbar from "../components/MyNavbar"; import UserContext from "../contexts/UserContext"; import { makeRequest } from "../utils.ts"; @@ -18,7 +21,12 @@ const LogoutPage = () => { cleanup(); }, []); - return
; + return ( +