import * as React from "react"; import Notice from "~/components/Notice"; const AlertNotice: React.FC = ({ children }) => { return ( {" "} {children} ); }; export default AlertNotice;