utopia-os / utopia-ui

Reuseable React Components to build mapping apps for all kinds of real life networks and communities
https://utopia-os.org
GNU General Public License v3.0
17 stars 3 forks source link

why #1

Closed sandysameh closed 1 year ago

sandysameh commented 2 years ago

ERROR in ./src/components/map/map.js 49:35-44

export 'default' (imported as 'UtopiaMap') was not found in 'utopia-ui' (possible exports: Item, Layer, Tags, UtopiaMap, __esModule)

ERROR in ./node_modules/utopia-ui/node_modules/react-leaflet-cluster/lib/index.js 29:13-43

Module not found: Error: Can't resolve '@react-leaflet/core' in 'F:\Courses\Mern Stack Projects Crash COurse\Cypod\client\node_modules\utopia-ui\node_modules\react-leaflet-cluster\lib'

antontranelis commented 1 year ago

Sorry for the late reply ... I guess you try to import UtopiaMap without the braces. You have to import UtopiaMap as named import.

Use import import { UtopiaMap } from 'utopia-ui' instead of import UtopiaMap from 'utopia-ui'