MD handlers for resolvers

This commit is contained in:
2024-08-05 06:25:55 -06:00
parent 3656fc42ac
commit 2b2b88f970
7 changed files with 193 additions and 25 deletions

View File

@@ -0,0 +1,9 @@
import { TTCQueryParser } from "@/lib/ttcQuery/TTCQueryParser";
import { atom } from "recoil";
export const PublicationAtom = atom({
key: "publication",
default: new TTCQueryParser({
path: { to: { dice: "2d6" } },
}),
});