greact/examples/vite/src/windows/index.tsx
2025-04-13 22:57:35 -04:00

9 lines
139 B
TypeScript

interface Props {
name: string;
}
const Window = function ({ name }: Props) {
return <window name={name} />;
};
export default Window;