From 25284bb10e604a9f643d0d6749419dfd0d83dd1b Mon Sep 17 00:00:00 2001 From: Mattias Date: Thu, 7 Mar 2024 11:43:19 +0100 Subject: [PATCH] More formatting --- frontend/src/Pages/YourProjectsPage.tsx | 48 +++++++++++++------------ 1 file changed, 26 insertions(+), 22 deletions(-) diff --git a/frontend/src/Pages/YourProjectsPage.tsx b/frontend/src/Pages/YourProjectsPage.tsx index 4c09f26..0e8f9d1 100644 --- a/frontend/src/Pages/YourProjectsPage.tsx +++ b/frontend/src/Pages/YourProjectsPage.tsx @@ -1,27 +1,31 @@ import { Link } from "react-router-dom"; import BasicWindow from "../Components/BasicWindow"; -function YourProjectsPage() { - - const content = -<> -

Your Projects

-
- -

ProjectNameExample

- -

ProjectNameExample

-

ProjectNameExample

-

ProjectNameExample

-
- - - const buttons = - <> - - - return ( - +function YourProjectsPage(): JSX.Element { + const content = ( + <> +

Your Projects

+
+ +

+ ProjectNameExample +

+ +

+ ProjectNameExample +

+

+ ProjectNameExample +

+

+ ProjectNameExample +

+
+ ); + + const buttons = <>; + + return ; } -export default YourProjectsPage; \ No newline at end of file +export default YourProjectsPage;