import { ReactNode } from 'react'; import scss from './popin.module.scss'; export type PopinProps = { zIndex?: number, height?: string, width?: string, children?: ReactNode, }; export function Popin({ children, zIndex, height, width, }: PopinProps) { return (
{children}
); }