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