Skip to content

Commit

Permalink
visualizer: fixing react import
Browse files Browse the repository at this point in the history
  • Loading branch information
M3nin0 committed Apr 29, 2022
1 parent 1ad1b0c commit 17dd187
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions src/lib/components/GeospatialMetadataVisualizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
6 changes: 3 additions & 3 deletions src/lib/components/InteractiveMap.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down

0 comments on commit 17dd187

Please sign in to comment.