core/components/Search.tsx
2021-01-05 11:34:46 +09:00

17 lines
224 B
TypeScript

import { useState } from 'react'
const Search = ({query, result}:SearchProps):JSX.Element => {
return (
<div>
<input />
</div>
)
}
interface SearchProps {
query: string
result: string
}
export default Search