Skip to content

Commit 3539b4a

Browse files
committed
chore: remove comment
1 parent df6b84f commit 3539b4a

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

frontend/packages/ui/src/components/Input/SearchInput.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ export interface SearchInputProps extends React.InputHTMLAttributes<HTMLInputEle
88
onClickSearch?: (value: string) => void;
99
}
1010

11-
// FIXME: Input으로 갈음할 수 있도록 개선이 필요할까? 일단 구현체가 다르므로 나눠둡니다.
1211
export const SearchInput = React.forwardRef<HTMLInputElement, SearchInputProps>(
1312
({ className, onClickSearch, ...props }, ref) => {
1413
const [value, setValue] = useState<string>('');

0 commit comments

Comments
 (0)