+
+ setAddress(e.target.value)}
+ onKeyDown={e => e.key === 'Enter' && handleSearch()}
+ className="flex-1"
+ />
+
+
+
+ {error && (
+
+ {error}
+
+ )}
+
+ {data && (
+
+
+ Inscriptions Data
+
+
+
+ {JSON.stringify(data, null, 2)}
+
+
+
+ )}
+
+ {!data && !loading && !error && (
+
+ Enter a Bitcoin address to search for inscriptions
+
+ )}
+
+