import { Col, Divider, Row, Text } from '@nextui-org/react' import { Fragment, ReactNode } from 'react' /** * Types */ interface Props { children?: ReactNode | ReactNode[] title: string } /** * Component */ export default function PageHeader({ title, children }: Props) { return ( {title} {children ? {children} : null} ) }