ai / client /src /store /text.js
Marco Beretta
LibreChat upload repo
3b6afc0
raw
history blame
No virus
112 Bytes
import { atom } from 'recoil';
const text = atom({
key: 'text',
default: '',
});
export default { text };