import { ReactNode } from "react"; export const SubTitle = ({ children }: { children: ReactNode }) => { return (

{children}

); };