All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.snippets.SearchBar.SearchBarPopUp.jsx Maven / Gradle / Ivy

The newest version!
import React from 'react'
import PropTypes from 'prop-types'
import { Dropdown, DropdownToggle } from 'reactstrap'

import { SearchBarPopUpList } from './SearchBarPopUpList'

export function SearchBarPopUp({
    labelFieldId,
    descriptionFieldId,
    iconFieldId,
    urlFieldId,
    ...props
}) {
    const { dropdownOpen } = props

    return (
         {}}
        >
            
            
        
    )
}

SearchBarPopUp.propTypes = {
    ...SearchBarPopUpList.propTypes,
    dropdownOpen: PropTypes.bool,
}

export default SearchBarPopUp




© 2015 - 2024 Weber Informatics LLC | Privacy Policy