import React, { ReactNode } from "react"; type Props = { label: string; children?: ReactNode; }; class Section extends React.Component { render() { const { label, children } = this.props; return (

{label}

); } } export default Section;