@churchapps/apphelper
Version:
Library of helper functions for React and NextJS ChurchApps
21 lines • 610 B
TypeScript
import React from "react";
import { UserContextInterface } from "@churchapps/helpers";
type Props = {
primaryMenuLabel: string;
primaryMenuItems: {
url: string;
icon: string;
label: string;
}[];
secondaryMenuLabel: string;
secondaryMenuItems: {
url: string;
label: string;
}[];
context: UserContextInterface;
appName: string;
onNavigate: (url: string) => void;
};
export declare const SiteHeader: React.MemoExoticComponent<(props: Props) => import("react/jsx-runtime").JSX.Element>;
export {};
//# sourceMappingURL=SiteHeader.d.ts.map