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;