+
+ Here you can execute your own SPARQL queries to manage your PKG.
+
+
+ Query execution status: {query_info}
+ Query execution result: {result}
+
+ This is your current PKG:
+
+ {/* [Only for testing] Local path to the image: {image_path}
*/}
+
+
+ );
+};
+
+export default PKGVisualization;
diff --git a/pkg_client/src/components/QueryForm.tsx b/pkg_client/src/components/QueryForm.tsx
new file mode 100644
index 0000000..65c66f5
--- /dev/null
+++ b/pkg_client/src/components/QueryForm.tsx
@@ -0,0 +1,66 @@
+// Form comprising a single text input and a submit button.
+
+import { useState } from "react";
+import { Alert, Button, Spinner } from "react-bootstrap";
+import Form from "react-bootstrap/Form";
+
+interface QueryFormProps {
+ handleSubmit: (query: string) => Promise