import { RootElementContext } from "./context";
import { RootProps } from "./types";
import { Popover } from "@local-logic/core/ui";
import React from "react";
export const Root = (props: RootProps) => (
props.onChange && props.onChange({ type: "open-change", data: open })
}
>
{props.children}
);
export const GoogleRoot = (props: RootProps) => (
{props.children}
);
// Export children
export { Marker } from "./Marker";
export { GoogleMarker } from "./Marker/GoogleMarker";
export { GoogleClusterMarker } from "./Marker/GoogleClusterMarker";
export { Content } from "./Content";
export { GoogleContent } from "./Content/GoogleContent";