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