mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
17 lines
405 B
JavaScript
17 lines
405 B
JavaScript
import preact from 'preact'
|
|
/** @jsx preact.h */
|
|
|
|
export default function SearchBar({ onSearchKeyChange }) {
|
|
return (
|
|
<div className={'search-input-wrapper'}>
|
|
<input
|
|
tabIndex={0}
|
|
className="form-control search-input"
|
|
aria-label="search files"
|
|
placeholder="Search files (regexp)"
|
|
type="text"
|
|
onInput={onSearchKeyChange}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|