NERDDISCO's picture
feat: changed everything to create Canvas2D games
6c2bcb4
raw
history blame
343 Bytes
import { atomWithStorage } from "jotai/utils";
import { base } from "@/constants";
export const answersAtom = atomWithStorage<
{
id: string;
content: string;
task: string;
}[]
>("2DGameGPT", [
{
id: "1",
content: base.default,
task: "Base Game",
},
]);
export const showCodeAtom = atomWithStorage("2DGameGPT-editor", false);