// @flow import * as React from 'react'; import FocusTrap from '../focus-trap'; import Portal from '../portal'; type Props = { children?: React.Node, }; const NotificationsWrapper = ({ children }: Props) => ( {children ? {children} : null} ); export default NotificationsWrapper;