blob: 0362f8172523b8e65e8950a1592b1f49ef34dfbe [file] [log] [blame]
import { Component } from "react";
import Styles from '../styles/sectionheading.module.css';
class CardRow extends Component {
constructor(props) {
super(props);
}
render() {
return (
<h1 className={Styles.title} id={this.props.id}>{this.props.title}</h1>
)
}
}
export default CardRow;