import React from 'react' import DebugIcon from '@material-ui/icons/PlayCircleOutline' import InfoIcon from '@material-ui/icons/Info' import WarningIcon from '@material-ui/icons/ErrorOutline' import ErrorIcon from '@material-ui/icons/HighlightOff' import Markdown from 'react-markdown' const Event = ({ type, event }) => (
{type === 'debug' && } {type === 'info' && } {type === 'warning' && } {type === 'error' && }
) export default Event