From cd5a8a32cbd4f085cafaaba51e9e6672371bc10e Mon Sep 17 00:00:00 2001 From: Eric Lay Date: Wed, 11 Mar 2026 08:38:59 -0500 Subject: [PATCH] Add src/components/ActivityCard.jsx --- src/components/ActivityCard.jsx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/components/ActivityCard.jsx diff --git a/src/components/ActivityCard.jsx b/src/components/ActivityCard.jsx new file mode 100644 index 0000000..9f658fe --- /dev/null +++ b/src/components/ActivityCard.jsx @@ -0,0 +1,23 @@ +import React from "react"; + +export default function ActivityCard() { + return ( +
+

Activity

+
+
+

Parcels Received

+

0

+
+
+

Consolidations Completed

+

0

+
+
+

Average Parcels per Consolidation

+

0.0

+
+
+
+ ); +} \ No newline at end of file