import * as React from 'react'; import { useTextInut } from '~/hooks/useTextInput'; import s from './TextFitler.module.scss'; import type { RecoilState } from 'recoil'; export function TextFilter(props: { textAtom: RecoilState; placeholder?: string }) { const [onChange, text] = useTextInut(props.textAtom); return ( ); }