From 4173003d322830ad79998c6ea3716ffcde0426b4 Mon Sep 17 00:00:00 2001 From: pavel Hamawand Date: Mon, 18 Mar 2024 16:53:13 +0100 Subject: [PATCH] initial component Setup --- frontend/src/Components/UserProjectListAdmin.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/frontend/src/Components/UserProjectListAdmin.tsx b/frontend/src/Components/UserProjectListAdmin.tsx index e69de29..62f921a 100644 --- a/frontend/src/Components/UserProjectListAdmin.tsx +++ b/frontend/src/Components/UserProjectListAdmin.tsx @@ -0,0 +1,16 @@ +import React from "react"; +import { useEffect, useState } from "react"; // Importing useEffect and useState from React +import { api } from "../API/API"; // Importing the api object +import { Project } from "../Types/goTypes"; // Importing the Project type + +const UserProjectListAdmin: React.FC = () => { + // Define the functional component UserProjectListAdmin + return ( +
+

User Projects

+ {/* Placeholder for project list */} +
+ ); +}; + +export default UserProjectListAdmin;