+
+ {
+ saveTitle({ id: props.funcABI.id, title: value });
+ }}
+ />
+
+
+
+
+
+
0
+ )
+ ? 'hidden'
+ : 'visible',
+ }}
+ />
+
+
+
+
+ );
+}
diff --git a/apps/quick-dapp-v2/src/components/CreateInstance/index.tsx b/apps/quick-dapp-v2/src/components/CreateInstance/index.tsx
new file mode 100644
index 00000000000..a422dc987b9
--- /dev/null
+++ b/apps/quick-dapp-v2/src/components/CreateInstance/index.tsx
@@ -0,0 +1,47 @@
+import React from 'react';
+import { Alert } from 'react-bootstrap';
+import { FormattedMessage } from 'react-intl';
+
+interface CreateInstanceProps {
+ isAiLoading: boolean;
+}
+
+const CreateInstance: React.FC