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}>{this.props.title}</h1> | |
) | |
} | |
} | |
export default CardRow; |