import React from "react"; import style from "./PageTitle.module.css" class PageTitle extends React.Component { constructor(props) { super(props); this.props = props; } render() { return (
{this.props.title} {this.props.subtitle} <> {this.props.children}
); } } export default PageTitle;