summaryrefslogtreecommitdiff
path: root/src/components/Card/Card.jsx
blob: 93e810249950a78ef5c938028965f92cfd381ac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import React from 'react'

const Card = (title, image) => {
  return (
    <>
      <img src={image} alt="" />
      <h2>{title}</h2>
    </>
  )
}

export default Card