import React, { PropsWithChildren } from "react"; export const Title: React.FC = ({ children }): JSX.Element => { return (

{children}

); };