Skip to content

Commit

Permalink
fix: Export FilterPanel
Browse files Browse the repository at this point in the history
  • Loading branch information
gmaclennan committed Oct 2, 2019
1 parent aaefcf1 commit 22a0adc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 15 deletions.
16 changes: 1 addition & 15 deletions src/FilterPanel/index.js
Original file line number Diff line number Diff line change
@@ -1,15 +1 @@
// @flow
import React from 'react'

import type { Observation } from 'mapeo-schema'
import type { Filter } from '../types'

type Props = {
filter: Filter,
setFilter: Filter => void,
observations: Observation[]
}

const FilterPane = ({ filter, setFilter, observations }: Props) => {}

export default FilterPane
export { default } from './FilterPanel'
1 change: 1 addition & 0 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export { default as ReportView } from './ReportView'
export { default as MapView } from './MapView'
export { default as MediaView } from './MediaView'
export { default as FilterPanel } from './FilterPanel'

0 comments on commit 22a0adc

Please sign in to comment.