2025-01-16 09:16:14 +09:00
|
|
|
import { atom } from 'recoil'
|
2024-10-26 17:57:34 +09:00
|
|
|
|
|
|
|
export const EditorValueState = atom({
|
|
|
|
key: 'editor_value',
|
2025-01-16 09:16:14 +09:00
|
|
|
default: JSON.stringify(
|
|
|
|
{
|
|
|
|
Hello: 'world!',
|
|
|
|
},
|
|
|
|
null,
|
|
|
|
2,
|
|
|
|
),
|
2024-10-26 17:57:34 +09:00
|
|
|
})
|