import React from 'react' import type { FC } from 'react' type Props = { children: React.ReactNode } const PageTitle: FC = ({ children }) => (

{children}

) export default PageTitle