import React from 'react' import './Notification.css' interface IProps { children: React.ReactNode | null show: boolean } export default class Notification extends React.Component { constructor(props: IProps) { super(props) } render() { return (
{this.props.children}
) } }