@pagamio/frontend-commons-lib
Version:
Pagamio library for Frontend reusable components like the form engine and table container
14 lines (13 loc) • 379 B
TypeScript
import React from 'react';
interface AuthPageLayoutProps {
title: string;
subtitle: string;
errorMessage: string | null;
showLogo?: boolean;
logo: React.ReactNode;
renderInAppLayout?: boolean;
children: React.ReactNode;
}
declare const AuthPageLayout: React.FC<AuthPageLayoutProps>;
export default AuthPageLayout;
export type { AuthPageLayoutProps };