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