import React from 'react'; import {SnackBar} from 'coral-ui'; const Notification = (props) => { if (props.notification.text) { setTimeout(() => { props.clearNotification(); }, props.notifLength); } return (