blob: ed776612ceffd0f339c252f8c6fff875e844252d [file] [log] [blame]
pineafan15b813d2022-02-13 10:06:09 +00001import { Component } from "react";
2import Styles from '../styles/sectionheading.module.css';
3
4class SectionHeading extends Component {
5 constructor(props) {
6 super(props);
7 }
8
9
10 render() {
11 return (
12 <h1 className={Styles.title} id={this.props.id}>{this.props.children}</h1>
13 )
14 }
15}
16
17export default SectionHeading;