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