import React from 'react' import { cn } from '@/lib/utils' import type { FC } from 'react' type Props = { children: React.ReactNode; className?: string } const PageTitle: FC = ({ children, className, ...rest }) => (

{children}

) export default PageTitle