UNPKG

@applicaster/zapp-react-native-ui-components

Version:

Applicaster Zapp React Native ui components for the Quick Brick App

9 lines (6 loc) 262 B
import * as React from "react"; import { View } from "react-native"; export const ComponentsMapRefContext = React.createContext<React.RefObject<View | null> | null>(null); export const useComponentsMapRef = () => React.useContext(ComponentsMapRefContext);