diff --git a/src/components/Modals/JsonSchemaModal.js b/src/components/Modals/JsonSchemaModal.js new file mode 100644 index 0000000..f6d4017 --- /dev/null +++ b/src/components/Modals/JsonSchemaModal.js @@ -0,0 +1,42 @@ +import React from 'react'; + +const JsonSchemaModal = ({ isActive, onClose, schema }) => { + const handleCopy = () => { + navigator.clipboard.writeText(JSON.stringify(schema, null, 2)); + }; + + return ( +
+
+
+
+

JSON Schema

+ +
+
+
+
+