import React from 'react'; import { Omnibar } from '@blueprintjs/select'; import { MenuItem } from '@blueprintjs/core'; import { compose } from 'utils'; import withSearch from 'containers/GeneralSearch/withSearch'; function Search({ resultSearch, globalSearchShow, openGlobalSearch, closeGlobalSearch, }) { const items = [ { title: 'The Shawshank Redemption', year: 1994 }, { title: 'The Godfather', year: 1972 }, { title: 'The Godfather: Part II', year: 1974 }, ]; const renderSearch = (search, { handleClick }) => ( ); return (