7 lines
159 B
TypeScript
7 lines
159 B
TypeScript
import { atom } from "recoil";
|
|
|
|
export const SchemaEditAtom = atom<Schema>({
|
|
key: "schema-edit",
|
|
default: { name: "", types: {}, schema: {}, id: "" },
|
|
});
|