From 0d4c4facd5db4ff16667033e9af00df326c16765 Mon Sep 17 00:00:00 2001 From: Jagraj Aulakh Date: Sun, 19 Mar 2023 15:12:04 -0400 Subject: [PATCH] #20 Made the page prettier :slightly_smiling_face: --- frontend/src/pages/LogoutPage.jsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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 ( + + + Logging you out... + + ); }; export default LogoutPage;