Portfolio/front/Tabs/Projects.ts

10 lines
167 B
TypeScript
Raw Normal View History

2025-03-12 08:17:34 +01:00
interface ProjectsProps {
width: number;
height: number;
}
const Projects = ({ width, height }: ProjectsProps) => {
return "Projects";
};
export default Projects;