Skip to content

Commit

Permalink
feat: use the MeasurementExplorer component in the app (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
wadjih-bencheikh18 committed Oct 10, 2022
1 parent 481ee20 commit 91402c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/App.tsx
Expand Up @@ -7,7 +7,7 @@ import {
FaGlasses,
} from 'react-icons/fa';

import { MeasurementPlot, MeasurementsPanel } from './components';
import { MeasurementExplorer, MeasurementsPanel } from './components';
import {
AppStateProvider,
useAppDispatch,
Expand Down Expand Up @@ -133,7 +133,7 @@ function DropZoneArea() {
>
<div style={{ padding: 5 }}>
{measurement ? (
<MeasurementPlot measurement={measurement} />
<MeasurementExplorer measurement={measurement} />
) : (
<span>No data, add them with drag and drop</span>
)}
Expand Down

0 comments on commit 91402c5

Please sign in to comment.