summaryrefslogtreecommitdiff
path: root/src/components/Card/Card.jsx
blob: 140451b284cf822d9581e79c295d3baea513f337 (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;