// @flow import * as React from "react"; import Notice from "components/Notice"; export default function AlertNotice({ children }: { children: React.Node }) { return ( {" "} {children} ); }