import BasicWindow from "../Components/BasicWindow"; import { ProjectListUser } from "../Components/ProjectListUser"; import { Project } from "../Types/goTypes"; function YourProjectsPage(): JSX.Element { //TODO: Change so that it reads projects from database const projects: Project[] = []; for (let i = 1; i <= 20; i++) { projects.push({ id: i, name: "Example Project " + i, description: "good", created: "now", owner: "me", }); } const content = ( <>