Portfolio/front/Tabs/Projects.ts
2025-03-12 08:17:34 +01:00

9 lines
167 B
TypeScript

interface ProjectsProps {
width: number;
height: number;
}
const Projects = ({ width, height }: ProjectsProps) => {
return "Projects";
};
export default Projects;