+
+ {
+ product.data.specificationsLeft.map((spec) => (
+
+
+ {spec.title}
+
+
+ {spec.subTitle}
+
+
+ ))
+ }
+
+ {
+ product.data.specificationsRight ? (
+
+ {product.data.specificationsRight?.map((spec) => (
+
+
+ {spec.title}
+
+
+ {spec.subTitle}
+
+
+ ))}
+
+ ) : product.data.tableData ? (
+
+
+
+
+
+
+
+
+ {product.data.tableData?.[0].feature?.map(
+ (header) => (
+
+ {header}
+ |
+ )
+ )}
+
+
+
+ {product.data.tableData?.map((row) =>
+ // Wrap each row's content in a separate element
+ row.description.map((rowData) => (
+
+ {/* Iterate through each cell value in the row's description array */}
+ {rowData.map((cellValue) => (
+ // Render each cell value in its own element
+ |
+ {cellValue}
+ |
+ ))}
+
+ ))
+ )}
+
+
+
+
+
+
+
+ ) : null
+ }
+