mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
15 lines
365 B
TypeScript
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 }
|