utopia-ui/src/Components/Map/UtopiaMap.tsx
2024-11-02 22:45:29 +01:00

15 lines
365 B
TypeScript

import { UtopiaMapProps } from '../../types'
import { ContextWrapper } from '../AppShell/ContextWrapper'
import { UtopiaMapInner } from './UtopiaMapInner'
import 'react-toastify/dist/ReactToastify.css'
function UtopiaMap(props: UtopiaMapProps) {
return (
<ContextWrapper>
<UtopiaMapInner {...props} />
</ContextWrapper>
)
}
export { UtopiaMap }