mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-30 14:25:19 +01:00
11 lines
148 B
TypeScript
11 lines
148 B
TypeScript
|
|
import { atom } from 'recoil';
|
||
|
|
|
||
|
|
const isTemporary = atom<boolean>({
|
||
|
|
key: 'isTemporary',
|
||
|
|
default: false,
|
||
|
|
});
|
||
|
|
|
||
|
|
export default {
|
||
|
|
isTemporary,
|
||
|
|
};
|