mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
16 lines
381 B
JavaScript
16 lines
381 B
JavaScript
import React from 'react'
|
|
|
|
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 (RegEx)"
|
|
type="text"
|
|
onInput={onSearchKeyChange}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|