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