9 lines
139 B
TypeScript
9 lines
139 B
TypeScript
interface Props {
|
|
name: string;
|
|
}
|
|
|
|
const Window = function ({ name }: Props) {
|
|
return <window name={name} />;
|
|
};
|
|
|
|
export default Window;
|