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);
