LibreChat/client/src/store/text.js

9 lines
111 B
JavaScript
Raw Normal View History

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