From 391e1cfee65e66bc9ceeea71c8015effc02e2bbf Mon Sep 17 00:00:00 2001 From: rohan09-raj Date: Sun, 17 Jul 2022 23:54:57 +0530 Subject: Added eslint and prettier --- src/components/Card/Card.jsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/components/Card/Card.jsx') diff --git a/src/components/Card/Card.jsx b/src/components/Card/Card.jsx index 140451b..93e8102 100644 --- a/src/components/Card/Card.jsx +++ b/src/components/Card/Card.jsx @@ -1,12 +1,12 @@ -import React from 'react'; +import React from 'react' const Card = (title, image) => { return ( <> - +

{title}

- ); -}; + ) +} -export default Card; +export default Card -- cgit