+
+ {
+ (currTab === 0 || currTab === 1) &&
+ {
+ setSearchQuery(event.target.value);
+ }}
+ onKeyDown={(event) => {
+ if (event.key === "Enter") {
+ event.preventDefault();
+ }
+ }}
+ limit={5}
+ style={{ width: '100%', borderRadius: '7px', fontFamily: "var(--zds-typography-base,Inter,Helvetica,arial,sans-serif)" }}
+ InputProps={{
+ style: {
+ borderRadius: 8,
+ },
+ endAdornment: (
+
+ {
+ searchQuery.length === 0 ? :
+ }
+
+ ),
+ }}
+ />
+ }
+ {
+ currTab === 2 &&
+
+ }
+
+
+ {currTab === 2 ? (
+
+ ) : (
+
+ )}
+
+
+ {currTab === 2 ? (
+
+ ) : (
+
+ )}
+
+
+
+
+ {
+ currTab === 0 && (
+
+ {isLoading ? (
+
+
+
+ ) : (
+ <>
+ {appsToShow?.length > 0 && appsToShow !== undefined && !isLoading ? (
+
+ {appsToShow.map((data, index) => (
+
+ ))}
+
+ ) : (
+
+ )}
+ >
+ )}
+
+ )
+ }
+ {
+ currTab === 1 && (
+
+ {isLoading ? (
+
+
+
+ ) : (
+ <>
+ {appsToShow?.length > 0 && appsToShow !== undefined ? (
+
+ {appsToShow.map((data, index) => (
+
+ ))}
+
+ ) : (
+
+ No Apps Found
+
+ )}
+ >
+ )}
+
+ )
+ }
+
+ {
+ currTab === 2 &&
+
+ }
+