We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac0fe37 commit a6f5cc3Copy full SHA for a6f5cc3
frontend/src/components/pages/ProfilePage.tsx
@@ -1,6 +1,7 @@
1
import React from "react";
2
import { Text } from "@chakra-ui/react";
3
import NavBar from "../common/navbar/NavBar";
4
+import Logout from "../auth/Logout";
5
6
const ProfilePage = (): React.ReactElement => {
7
return (
@@ -9,6 +10,7 @@ const ProfilePage = (): React.ReactElement => {
9
10
<Text textStyle="h3" mt={{ base: "6.375rem", md: "9.375rem" }}>
11
Profile Page 🫨
12
</Text>
13
+ <Logout />
14
</div>
15
);
16
};
0 commit comments