Portfolio/front/Tabs/About.ts
2025-03-12 08:17:34 +01:00

9 lines
152 B
TypeScript

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