utopia-ui/src/Components/Map/UtopiaMap.tsx

14 lines
341 B
TypeScript

import { UtopiaMapProps } from "../../types";
import { ContextWrapper } from "../AppShell/ContextWrapper";
import { UtopiaMapInner } from "./UtopiaMapInner";
function UtopiaMap(props: UtopiaMapProps) {
return (
<ContextWrapper>
<UtopiaMapInner {...props} />
</ContextWrapper>
);
}
export { UtopiaMap };