Добрый день! Очень прошу помочь!
Объясните пожалуйста как сделать чтобы компонент
MarkerClusterGroup для react-leaflet работал при
server side rendering?
Для самой карты использую react-leaflet-universal, но для кластеризации оно не работает.
Пробую делать то так
let MarkerClusterGroup;
...
componentDidMount() {
MarkerClusterGroup = require('react-leaflet-markerclusterr');
}
Выдает ошибки
warning.js: 33 Warning: React.createElement: type is invalid - expected a string (for built-in components) or a class / function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports
.
Не пойму что с этим делать
Буду благодарен за любую помощь!