File size: 120 Bytes
9705b6c
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import { atom } from 'recoil';

const text = atom<string>({
  key: 'text',
  default: '',
});

export default { text };