10 lines
233 B
TypeScript
10 lines
233 B
TypeScript
import { TTCQueryParser } from "@/lib/ttcQuery/TTCQueryParser";
|
|
import { atom } from "recoil";
|
|
|
|
export const PublicationAtom = atom({
|
|
key: "publication",
|
|
default: new TTCQueryParser({
|
|
path: { to: { dice: "2d6" } },
|
|
}),
|
|
});
|