"use client"; import clsx from "clsx"; import styles from "./window.module.css"; interface WindowProps { title?: string | JSX.Element; } const Window: React.ComponentType> = ({ title, children, }) => { return (
{title}
{children}
); }; export default Window;