import type { PropsWithChildren } from "react"; type Props = PropsWithChildren & {}; export default function EmailRoot({ children }: Props) { const divider = (
); return (
Wireguard UI Mailer {divider}
{children}
{divider}
); }