13 lines
181 B
TypeScript
13 lines
181 B
TypeScript
import { atom } from 'recoil'
|
|
|
|
export const EditorValueState = atom({
|
|
key: 'editor_value',
|
|
default: JSON.stringify(
|
|
{
|
|
Hello: 'world!',
|
|
},
|
|
null,
|
|
2,
|
|
),
|
|
})
|