blob: 9bc20a0bdbbf52f23205a7318933835ef1d208c8 [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 (
12 <h1 className={Styles.title}>{this.props.title}</h1>
13 )
14 }
15}
16
17export default CardRow;