Spaces:
Runtime error
Runtime error
feat: renamed to "2DGameCreator"
Browse files- src/store/atoms.ts +2 -2
src/store/atoms.ts
CHANGED
|
@@ -8,11 +8,11 @@ export const answersAtom = atomWithStorage<
|
|
| 8 |
content: string;
|
| 9 |
task: string;
|
| 10 |
}[]
|
| 11 |
-
>("
|
| 12 |
{
|
| 13 |
id: "1",
|
| 14 |
content: baseGame.default,
|
| 15 |
task: "Base Game",
|
| 16 |
},
|
| 17 |
]);
|
| 18 |
-
export const showCodeAtom = atomWithStorage("
|
|
|
|
| 8 |
content: string;
|
| 9 |
task: string;
|
| 10 |
}[]
|
| 11 |
+
>("2DGameCreator", [
|
| 12 |
{
|
| 13 |
id: "1",
|
| 14 |
content: baseGame.default,
|
| 15 |
task: "Base Game",
|
| 16 |
},
|
| 17 |
]);
|
| 18 |
+
export const showCodeAtom = atomWithStorage("2DGameCreator-editor", false);
|