From 49be4dfc3d478ad02876c9238c48c513edac1e7c Mon Sep 17 00:00:00 2001 From: rohan09-raj Date: Thu, 28 Jul 2022 17:56:15 +0530 Subject: refactoring folder structure --- client/src/components/LabelCard/LabelCard.jsx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 client/src/components/LabelCard/LabelCard.jsx (limited to 'client/src/components/LabelCard/LabelCard.jsx') diff --git a/client/src/components/LabelCard/LabelCard.jsx b/client/src/components/LabelCard/LabelCard.jsx new file mode 100644 index 0000000..be02f01 --- /dev/null +++ b/client/src/components/LabelCard/LabelCard.jsx @@ -0,0 +1,23 @@ +import React from 'react' +import styles from './LabelCard.module.css' + +const LabelCard = ({ id, name, value, title, image }) => { + return ( +
+ + +
+ ) +} + +export default LabelCard -- cgit