LibreChat/client/src/store/text.js

9 lines
107 B
JavaScript
Raw Normal View History

2023-03-29 11:25:27 -04:00
import { atom } from 'recoil';
const text = atom({
key: 'text',
default: ''
});
export default text;