You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
506 B

import "./style.css";
import React from "react";
export default class OverlayCard extends React.Component {
render() {
return (
<div className="sCard" style={{}}>
<h3 style={{}}>
<b> {this.props.title.name}:</b> {this.props.OverlayInfo.name}
</h3>
<div>
<span style={{ fontSize: "1.4em" }}>
<b>{this.props.title.discription}:</b>
{this.props.OverlayInfo.description}
</span>
</div>
</div>
);
}
}