import * as React from "react"; import Notice from "~/components/Notice"; export default function AlertNotice({ children, }: { children: React.ReactNode; }) { return ( {" "} {children} ); }