7 lines
110 B
JavaScript
7 lines
110 B
JavaScript
import { atom } from 'recoil'
|
|
|
|
export const textState = atom({
|
|
key: 'textState',
|
|
default: 'test text',
|
|
})
|