import React from "react"; import "./PageTitle.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;