import { FC, ReactNode } from "react"; type TPageType = "public" | "onboarding" | "private"; type TAuthenticationWrapper = { children: ReactNode; pageType: TPageType; }; export const AuthenticationWrapper: FC = (props) => { const { children, pageType } = props; return
{children}
; };