diff options
author | rohan09-raj <[email protected]> | 2022-07-17 23:54:57 +0530 |
---|---|---|
committer | rohan09-raj <[email protected]> | 2022-07-17 23:54:57 +0530 |
commit | 391e1cfee65e66bc9ceeea71c8015effc02e2bbf (patch) | |
tree | 2dcd6961d726d711eaf66140b2f31a25a43c5904 /src/components/Card | |
parent | c44c85af7ade620419c097d9fc8ce4c9c66c00a7 (diff) |
Added eslint and prettier
Diffstat (limited to 'src/components/Card')
-rw-r--r-- | src/components/Card/Card.jsx | 10 |
1 files changed, 5 insertions, 5 deletions
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 ( <> - <img src={image} alt='' /> + <img src={image} alt="" /> <h2>{title}</h2> </> - ); -}; + ) +} -export default Card; +export default Card |