+ {entries.length === 0 ? (
+
+ No networks found for this container.
+
+ ) : (
+
+
+
+ Network
+ IP Address
+ Gateway
+ MAC Address
+ Aliases
+
+
+
+ {entries.map(([name, network]) => (
+
+
+ {name}
+
+
+ {network.IPAddress
+ ? `${network.IPAddress}/${network.IPPrefixLen}`
+ : "-"}
+
+
+ {network.Gateway || "-"}
+
+
+ {network.MacAddress || "-"}
+
+
+ {network.Aliases?.join(", ") || "-"}
+
+
+ ))}
+
+
+ )}
+
+