// @flow import React from 'react'; import classnames from 'classnames'; import { ComboboxOption } from '@reach/combobox'; import FileThumbnail from 'component/fileThumbnail'; import ChannelThumbnail from 'component/channelThumbnail'; type Props = { claim: ?Claim, uri: string, noComboBox?: boolean, }; export default function WunderbarSuggestion(props: Props) { const { claim, uri, noComboBox = false } = props; if (!claim) { return null; } const isChannel = claim.value_type === 'channel'; const Wrapper = noComboBox ? (props: any) =>