summaryrefslogtreecommitdiff
path: root/src/components/shared/TextFitler.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/shared/TextFitler.tsx')
-rw-r--r--src/components/shared/TextFitler.tsx5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/components/shared/TextFitler.tsx b/src/components/shared/TextFitler.tsx
index e4a4a88..7af61ac 100644
--- a/src/components/shared/TextFitler.tsx
+++ b/src/components/shared/TextFitler.tsx
@@ -4,10 +4,7 @@ import { useTextInut } from 'src/hooks/useTextInput';
import s from './TextFitler.module.scss';
-export function TextFilter(props: {
- textAtom: RecoilState<string>;
- placeholder?: string;
-}) {
+export function TextFilter(props: { textAtom: RecoilState<string>; placeholder?: string }) {
const [onChange, text] = useTextInut(props.textAtom);
return (
<input