9 lines
152 B
TypeScript
9 lines
152 B
TypeScript
interface AboutProps {
|
|
width: number;
|
|
height: number;
|
|
}
|
|
|
|
const About = ({ width, height }: AboutProps) => {
|
|
return "About";
|
|
};
|
|
export default About;
|