From 830b9d067f9c47579022174114a08066682b04d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9B=90=EB=8D=94?= Date: Sat, 23 Jan 2021 11:46:41 +0900 Subject: [PATCH] feat: search ui --- components/Search.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/components/Search.tsx b/components/Search.tsx index f747fd8..578a009 100644 --- a/components/Search.tsx +++ b/components/Search.tsx @@ -1,10 +1,9 @@ // import { useState } from 'react' -const Search = ({ query, result }: SearchProps): JSX.Element => { +const Search = (): JSX.Element => { return ( -
- {query} { result } - +
+
) }