From 65f1d32bb867ba6037e52f122db3b5ab7e724c39 Mon Sep 17 00:00:00 2001 From: Pramod Mahajan Date: Sun, 18 May 2025 23:14:45 +0530 Subject: [PATCH] added new component for card View directory-contacts --- .../Directory/CardViewDirectory.jsx | 75 +++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 src/components/Directory/CardViewDirectory.jsx diff --git a/src/components/Directory/CardViewDirectory.jsx b/src/components/Directory/CardViewDirectory.jsx new file mode 100644 index 00000000..3dfda7be --- /dev/null +++ b/src/components/Directory/CardViewDirectory.jsx @@ -0,0 +1,75 @@ +import React from "react"; + +const CardViewDirectory = ({contact}) => { + return ( +
+
+
+

{contact.name}

+ +
+
+
+ + +
+
+
+ +
+ ); +}; + +export default CardViewDirectory;