+
+ Activity
+
+ {busy ? `${active.length} active` : "Idle"}
+
+
+
+ {jobs === null ? (
+
Loading…
+ ) : active.length === 0 && recent.length === 0 ? (
+
No background activity.
+ ) : (
+ <>
+ {active.length > 0 && (
+
+ {active.map((j) =>
)}
+
+ )}
+ {recent.length > 0 && (
+ <>
+
Recent
+
+ {recent.map((j) => )}
+
+ >
+ )}
+ >
+ )}
+