mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-19 18:00:15 +01:00
9 lines
107 B
JavaScript
9 lines
107 B
JavaScript
|
|
import { atom } from 'recoil';
|
||
|
|
|
||
|
|
const text = atom({
|
||
|
|
key: 'text',
|
||
|
|
default: ''
|
||
|
|
});
|
||
|
|
|
||
|
|
export default text;
|