@h4wldev/react-naver-maps
Version:
React Navermaps API integration for modern development.
10 lines (7 loc) • 304 B
TypeScript
import * as react from 'react';
type ContainerContextType = {
element: HTMLElement | null;
};
declare const ContainerContext: react.Context<ContainerContextType>;
declare const useContainerContext: () => ContainerContextType;
export { ContainerContext, ContainerContextType, useContainerContext };