Skip to content

Instantly share code, notes, and snippets.

@gregoryanderson
Last active February 11, 2020 17:32
Show Gist options
  • Save gregoryanderson/e607ad737f29f357ab8dd3602445a6a6 to your computer and use it in GitHub Desktop.
Save gregoryanderson/e607ad737f29f357ab8dd3602445a6a6 to your computer and use it in GitHub Desktop.
import React from "react";
import './Card.css'
import {Button} from "./styles"
const Card = props => {
return (
<section className="Card">
<h1>{props.title}</h1>
<p>{props.description}</p>
<Button card onClick={() => props.deleteCard(props.id)}>Delete</Button>
</section>
);
};
export default Card;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment