@h4wldev/react-naver-maps
Version:
React Navermaps API integration for modern development.
15 lines (12 loc) • 526 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { CSSProperties, ReactNode, ComponentType, ComponentPropsWithoutRef } from 'react';
type Props = {
innerStyle?: CSSProperties;
fallback?: ReactNode;
/**
* 일반 children 혹은 render function
*/
children?: ReactNode | ComponentType;
} & Omit<ComponentPropsWithoutRef<'div'>, 'children'>;
declare function Container({ children, fallback, innerStyle, ...restProps }: Props): react_jsx_runtime.JSX.Element;
export { Container, Props };