UNPKG

pagamio-frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

11 lines (10 loc) 288 B
interface AuthPageLayoutProps { title: string; subtitle: string; errorMessage: string | null; showLogo?: boolean; renderInAppLayout?: boolean; children: React.ReactNode; } declare const AuthPageLayout: React.FC<AuthPageLayoutProps>; export default AuthPageLayout;