UNPKG

@lad-tech/mobydick-core

Version:

React Native components library focused on usability, accessibility and developer experience

14 lines (10 loc) 317 B
import usePortalHost from './usePortalHost'; interface IParams { portalName: string; hostName: string; } const usePortal = ({hostName}: IParams) => { const {updatePortal, unmountPortal, mountPortal} = usePortalHost(hostName); return {mountPortal, updatePortal, unmountPortal}; }; export default usePortal;