interface AppWrapperProps {
    ads?: {
        kakao?: boolean;
    };
    appTheme?: RecursiveThemeEntry<DevfiveTheme>;
    authRouteOptionMap?: DevfiveAuthRouteOptionMap;
    children: ReactNode;
    fixedTheme?: "dark" | "light";
    globalHead?: ReactNode;
    globalWrapper?: ComponentType<{
        children: ReactNode;
    }>;
    i18n?: {
        fallback?: string;
        resources?: Record<string, Record<string, any>>;
    };
    locale?: Locale;
    splashOption?: Omit<SplashProps, "show">;
    statistics?: {
        gaId?: string;
    };
}

Properties

ads?: {
    kakao?: boolean;
}

Type declaration

  • Optional kakao?: boolean
authRouteOptionMap?: DevfiveAuthRouteOptionMap
children: ReactNode
fixedTheme?: "dark" | "light"
globalHead?: ReactNode
globalWrapper?: ComponentType<{
    children: ReactNode;
}>

Type declaration

  • children: ReactNode
i18n?: {
    fallback?: string;
    resources?: Record<string, Record<string, any>>;
}

Type declaration

  • Optional fallback?: string
  • Optional resources?: Record<string, Record<string, any>>
locale?: Locale
splashOption?: Omit<SplashProps, "show">
statistics?: {
    gaId?: string;
}

Type declaration

  • Optional gaId?: string

Generated using TypeDoc