chat / client /src /store /text.ts
helloya20's picture
Upload 2345 files
f0743f4 verified
import { atom } from 'recoil';
const text = atom<string>({
key: 'text',
default: '',
});
export default { text };