initial component Setup

This commit is contained in:
pavel Hamawand 2024-03-18 16:53:13 +01:00
parent b8f669e454
commit 4173003d32

View file

@ -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 (
<div>
<h2>User Projects</h2>
{/* Placeholder for project list */}
</div>
);
};
export default UserProjectListAdmin;