chat / client /src /store /text.ts
Zhitomir's picture
chat init
aa2e6af
Raw
History Blame Contribute Delete
120 Bytes
import { atom } from 'recoil';
const text = atom<string>({
key: 'text',
default: '',
});
export default { text };