@churchapps/apphelper
Version:
Library of helper functions for React and NextJS ChurchApps
17 lines • 470 B
TypeScript
import React from "react";
import { UserContextInterface } from "@churchapps/helpers";
interface Props {
notificationCounts: {
notificationCount: number;
pmCount: number;
};
loadCounts: () => void;
userName: string;
profilePicture: string;
context: UserContextInterface;
appName: string;
onNavigate: (url: string) => void;
}
export declare const UserMenu: React.FC<Props>;
export {};
//# sourceMappingURL=UserMenu.d.ts.map