open-nomad/website/components/search-bar/index.jsx
2020-08-28 15:15:35 -04:00

20 lines
509 B
JavaScript

import Search from '@hashicorp/react-search'
export default function SearchBar() {
return (
<Search
renderHitContent={({ hit, Highlight }) => (
<>
<span className="name">
<Highlight attribute="page_title" hit={hit} tagName="span" />
</span>
<span className="description">
<Highlight attribute="description" hit={hit} tagName="span" />
</span>
</>
)}
placeholder="Search Nomad documentation"
/>
)
}