Remove unneeded DynamicJsonForm.tsx

This commit is contained in:
Ola Hungerford
2025-03-16 15:24:34 -07:00
parent 1f214deeab
commit a3740c4798

View File

@@ -1,18 +0,0 @@
// Mock for DynamicJsonForm that only exports the types needed for tests
export type JsonValue =
| string
| number
| boolean
| null
| JsonValue[]
| { [key: string]: JsonValue };
export type JsonSchemaType = {
type: "string" | "number" | "integer" | "boolean" | "array" | "object";
description?: string;
properties?: Record<string, JsonSchemaType>;
items?: JsonSchemaType;
};
// Default export is not used in the tests
export default {};