Skip to content

Commit

Permalink
merge: resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
0xtiti committed Jul 19, 2024
1 parent 2551570 commit e485b2a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/components/SearchBar.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
import { useTranslation } from 'next-i18next';

interface SearchBarProps {
value: string;
onChange: (value: string) => void;
}

export const SearchBar = ({ value, onChange }: SearchBarProps) => {
const { t } = useTranslation();

const handleChange = (event: React.ChangeEvent<HTMLInputElement>) => {
onChange(event.target.value);
};
Expand Down

0 comments on commit e485b2a

Please sign in to comment.