10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
interface ProjectsProps {
|
|
width: number;
|
|
height: number;
|
|
scrollPosition: number;
|
|
}
|
|
|
|
const Projects = ({ width, height, scrollPosition }: ProjectsProps) => {
|
|
return `Projects ${scrollPosition}`;
|
|
};
|
|
export default Projects;
|