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