import type { FC, PropsWithChildren, ReactNode } from 'react'; import { Empty } from '../../ui/empty'; import { AffineOtherPageLayout } from '../affine-other-page-layout'; import { authPageContainer, hideInSmallScreen } from './share.css'; export const AuthPageContainer: FC< PropsWithChildren<{ title?: ReactNode; subtitle?: ReactNode }> > = ({ children, title, subtitle }) => { return (

{title}

{subtitle}

{children}
); };