diff --git a/common/recoil/options/options.atoms.ts b/common/recoil/options/options.atoms.ts new file mode 100644 index 0000000..08f20a5 --- /dev/null +++ b/common/recoil/options/options.atoms.ts @@ -0,0 +1,9 @@ +import {atom} from "recoil"; + +export const optionsAtom = atom({ + key: "options", + default: { + lineColor : "#000000", + lineWidth: 5, + }, +}); \ No newline at end of file