fix: add text to global state

This commit is contained in:
Danny Avila 2023-03-29 11:25:27 -04:00
parent 79bb54db9c
commit d6fdf41011
5 changed files with 19 additions and 15 deletions

8
client/src/store/text.js Normal file
View file

@ -0,0 +1,8 @@
import { atom } from 'recoil';
const text = atom({
key: 'text',
default: ''
});
export default text;