+ {result.performance.dns > 0 && (
+
+
DNS Lookup:
+
{result.performance.dns.toFixed(2)} ms
+
+ )}
+ {result.performance.tcp > 0 && (
+
+
TCP Connection:
+
{result.performance.tcp.toFixed(2)} ms
+
+ )}
+ {result.performance.ssl > 0 && (
+
+
SSL Handshake:
+
{result.performance.ssl.toFixed(2)} ms
+
+ )}
+ {result.performance.ttfb > 0 && (
+
+
Time to First Byte (TTFB):
+
{result.performance.ttfb.toFixed(2)} ms
+
+ )}
+ {result.performance.download > 0 && (
+
+
Content Download:
+
{result.performance.download.toFixed(2)} ms
+
+ )}
+
+
Total Time:
+
+ {result.performance.total.toFixed(2)} ms
+
+
+