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