diff options
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 |