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

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

export default { text };