UNPKG

@gorhom/bottom-sheet

Version:

A performant interactive bottom sheet with fully configurable options 🚀

8 lines (5 loc) • 288 B
import { createContext } from 'react'; import type { BottomSheetMethods, BottomSheetVariables } from '../types'; export const BottomSheetContext = createContext<(BottomSheetMethods & BottomSheetVariables) | null>(null); export const BottomSheetProvider = BottomSheetContext.Provider;