UNPKG

metadata-based-explorer1

Version:
13 lines (8 loc) 276 B
// @flow import * as React from 'react'; import Portal from '../portal'; type Props = { children?: React.Node, }; const NotificationsWrapper = ({ children }: Props) => <Portal className="notifications-wrapper">{children}</Portal>; export default NotificationsWrapper;