Portfolio/front/Tabs/Projects.ts

11 lines
226 B
TypeScript
Raw Normal View History

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