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