NERDDISCO's picture
feat: renamed to "2DGameCreator"
91e9e61
raw
history blame contribute delete
368 Bytes
import { atomWithStorage } from "jotai/utils";
import { baseGame } from "@/constants/baseGame";
export const answersAtom = atomWithStorage<
{
id: string;
content: string;
task: string;
}[]
>("2DGameCreator", [
{
id: "1",
content: baseGame.default,
task: "Base Game",
},
]);
export const showCodeAtom = atomWithStorage("2DGameCreator-editor", false);