@attio/react-native-bottom-sheet-toolbox
Version:
15 lines (11 loc) • 426 B
text/typescript
import React from "react"
import {useBottomSheetToolboxInternalContext} from "../../context"
import {BOTTOM_SHEET_DEV_TOOLS} from "../../utils"
export function useBottomSheetDevToolsDeleteSheet() {
const {debugId} = useBottomSheetToolboxInternalContext()
React.useEffect(() => {
return () => {
BOTTOM_SHEET_DEV_TOOLS.sendMessage("delete-sheet", {sheetId: debugId})
}
}, [debugId])
}