ptools-v2/src/GlobalStates/EditorValueState.ts
Minhyeok Park 05ff8493e4
All checks were successful
/ deploy_site (push) Successful in 23s
chore: add prettier linter
2025-01-16 09:16:14 +09:00

13 lines
181 B
TypeScript

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