import Markdown from "react-markdown" import classNames from "classnames" import { MdClose } from "react-icons/md" const NotificationBanner = ({ data: { text, type }, closeSelf }) => { return (
{text}
) } export default NotificationBanner