From 87a343644592e9b425e7fa0805988ad8e7ee8778 Mon Sep 17 00:00:00 2001 From: Blaster4385 Date: Fri, 12 Aug 2022 11:23:48 +0530 Subject: Refactor code and switch to a multi-step form setup --- client/src/components/Card/Card.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'client/src/components/Card/Card.jsx') diff --git a/client/src/components/Card/Card.jsx b/client/src/components/Card/Card.jsx index 3d66067..9460955 100644 --- a/client/src/components/Card/Card.jsx +++ b/client/src/components/Card/Card.jsx @@ -1,9 +1,9 @@ import React from 'react' import styles from './Card.module.css' -const Card = ({ title, image }) => { +const Card = ({ title, image, onClick }) => { return ( -
+

{title}

-- cgit