@shopgate/engage
Version:
Shopgate's ENGAGE library.
5 lines • 414 B
JavaScript
import React from'react';import{createPortal}from'react-dom';import{SnackBar}from'@shopgate/pwa-ui-material';/**
* The SnackBarContainer component.
* @param {Object} props The component props.
* @returns {JSX}
*/function SnackBarContainer(props){if(!props.toasts.length){return null;}return createPortal(React.createElement(SnackBar,props),document.getElementById('portals'));}export default SnackBarContainer;