\n \n {!isEmpty(toasts)\n ? \n : null\n }\n
\n \n {!isEmpty(alerts)\n ?
\n : null\n }\n
\n \n \n )\n}\n\nexport default withSystemNotifications\n","import React from 'react'\nimport { Alert } from '@himaxwell/multiverse'\n\nconst AlertComponent = (props) => {\n const {\n dismissAlert,\n alerts = [],\n } = props\n\n const alertVariants = {\n notice: 'success',\n alert: 'danger',\n error: 'danger',\n warning: 'warning',\n }\n\n return alerts.map((message, index) => {\n const keys = Object.keys(message)\n return keys.map((key) => {\n if (alertVariants[key]) {\n return (\n