import { connect } from 'react-redux'; import { GlobalState, Notification as _Notification } from '../../interfaces'; import classes from './NotificationCenter.module.css'; import Notification from '../UI/Notification/Notification'; interface ComponentProps { notifications: _Notification[]; } const NotificationCenter = (props: ComponentProps): JSX.Element => { return (