import React from "react"; import Container from "./container"; const SectionTitle = (props) => { return ( {props.pretitle && (
{props.pretitle}
)} {props.title && (

{props.title}

)} {props.children && (

{props.children}

)}
); } export default SectionTitle;