initial component Setup
This commit is contained in:
parent
b8f669e454
commit
4173003d32
1 changed files with 16 additions and 0 deletions
|
@ -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;
|
Loading…
Reference in a new issue