mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 14:10:22 +00:00
17 lines
226 B
TypeScript
17 lines
226 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
|