Teleforge API Reference - v0.1.0
    Preparing search index...

    Interface AppShellProps

    interface AppShellProps {
        children: ReactNode;
        className?: string;
        fullHeight?: boolean;
        header?: {
            onBackClick?: () => void;
            showBackButton?: boolean;
            title: string;
        };
        mainButton?: {
            loading?: boolean;
            onClick: () => void;
            text: string;
            visible?: boolean;
        };
        padded?: boolean;
        safeArea?: boolean;
        style?: CSSProperties;
    }
    Index

    Properties

    children: ReactNode
    className?: string
    fullHeight?: boolean
    header?: { onBackClick?: () => void; showBackButton?: boolean; title: string }
    mainButton?: {
        loading?: boolean;
        onClick: () => void;
        text: string;
        visible?: boolean;
    }
    padded?: boolean
    safeArea?: boolean
    style?: CSSProperties