import React from "react"; import PropTypes from "prop-types"; import GenericPageWithIcon from "./GenericPageWithIcon"; import { Alert } from "grommet-icons"; function Warning(props) { return ( } close={props.close} />); } Warning.propTypes = { data: PropTypes.object, close: PropTypes.func }; Warning.pluginName = "Warning"; export default Warning;