+ {this.state.hasError ? (
+
+ ) : this.props.children}
+
+ );
+ }
+
+ static getDerivedStateFromError(_error: Error) {
+ return { hasError: true };
+ }
+}
diff --git a/src/ui/hunt-optimizer/HuntOptimizerComponent.css b/src/ui/hunt-optimizer/HuntOptimizerComponent.css
new file mode 100644
index 00000000..e69de29b
diff --git a/src/ui/hunt-optimizer/HuntOptimizerComponent.tsx b/src/ui/hunt-optimizer/HuntOptimizerComponent.tsx
new file mode 100644
index 00000000..24fa86ac
--- /dev/null
+++ b/src/ui/hunt-optimizer/HuntOptimizerComponent.tsx
@@ -0,0 +1,10 @@
+import React from "react";
+import './HuntOptimizerComponent.css';
+
+export class HuntOptimizerComponent extends React.Component {
+ render() {
+ return (
+