import React from "react"; import "./index.css"; class Card extends React.Component { constructor( props ) { super(props) this.state = { show : true }; } render() { return (
×

{this.props.title}

{this.props.content}

); } } export default Card;