export default function Noscript({ id }: { id: string }) {
    return (
        <iframe
            src={"https://www.googletagmanager.com/ns.html?id=" + id}
            height="0"
            width="0"
            style={{ display: "none", visibility: "hidden" }}
        ></iframe>
    );
}
