Gitako/src/components/SearchBar.js
2018-06-22 22:44:44 +08:00

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>
)
}