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