import * as React from "react"; export function Custom({ id, children, }: { id: string; children: React.ReactNode; }) { return (
{children}
); }