import { Link } from "react-router-dom"; import { Project } from "../Types/goTypes"; /** * The props for the ProjectsProps component */ interface ProjectProps { projects: Project[]; } /** * A list of projects for users, that links the user to the right project page * thanks to the state property * @param props - The projects to display * @returns {JSX.Element} The project list * @example * const projects = [{ id: 1, name: "Random name" }]; * return ; */ export function ProjectListUser(props: ProjectProps): JSX.Element { return (
); }