diff --git a/src/lib/components/GeospatialMetadataVisualizer.js b/src/lib/components/GeospatialMetadataVisualizer.js index b5dbd59..909239b 100644 --- a/src/lib/components/GeospatialMetadataVisualizer.js +++ b/src/lib/components/GeospatialMetadataVisualizer.js @@ -6,6 +6,8 @@ * under the terms of the MIT License; see LICENSE file for more details. */ +import React from 'react'; + import _ from 'lodash'; import PropTypes from 'prop-types'; diff --git a/src/lib/components/InteractiveMap.js b/src/lib/components/InteractiveMap.js index 647e35c..7050b49 100644 --- a/src/lib/components/InteractiveMap.js +++ b/src/lib/components/InteractiveMap.js @@ -6,13 +6,13 @@ * under the terms of the MIT License; see LICENSE file for more details. */ +import React from 'react'; +import { useEffect, useRef } from 'react'; + import _ from 'lodash'; import PropTypes from 'prop-types'; -import React from 'react'; -import { useEffect, useRef } from 'react'; - import L from 'leaflet'; import { useLeafletContext } from '@react-leaflet/core';