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;