import React, { ReactNode } from "react"; import { FunctionComponent } from "react"; type Props = { children: ReactNode }; export const SectionTitle: FunctionComponent = ({ children }) => { return (

{children}

); };