Portfolio/front/Tabs/About.ts

10 lines
152 B
TypeScript
Raw Normal View History

2025-03-12 08:17:34 +01:00
interface AboutProps {
width: number;
height: number;
}
const About = ({ width, height }: AboutProps) => {
return "About";
};
export default About;