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