blob: ef496081cc1208c234673cb5608c7e767e6cd536 [file] [log] [blame]
import React, { FC } from 'react';
const Subsection = (props) => (
<>
<div className={"h-100 d-flex flex-column justify-content-center"}>
<h1 className={"color-primary"}>{props.title}</h1>
{props.children}
</div>
</>
)
export default Subsection;