blob: 0362f8172523b8e65e8950a1592b1f49ef34dfbe [file] [log] [blame]
pineafana5ce9102021-09-02 17:21:31 +01001import { Component } from "react";
2import Styles from '../styles/sectionheading.module.css';
3
4class CardRow extends Component {
5 constructor(props) {
6 super(props);
7 }
8
9
10 render() {
11 return (
Samuel Shuert604e31d2021-09-02 16:06:20 -050012 <h1 className={Styles.title} id={this.props.id}>{this.props.title}</h1>
pineafana5ce9102021-09-02 17:21:31 +010013 )
14 }
15}
16
17export default CardRow;