UNPKG

react-material-overlay

Version:

A fully featured Material UI implementation of overlays like modals, alert dialogs, lightboxes, and bottom sheets featuring easy stack management and browser history integration

9 lines (6 loc) 225 B
import React from 'react'; import { RmoStack } from '../../core'; import { Id } from '../../types'; export default function useRmoStackItemIndex(id: Id) { return React.useRef(RmoStack.findIndexById(id)).current; }