UNPKG

bananas-commerce-admin

Version:

What's this, an admin for apes?

13 lines (12 loc) 393 B
import React from "react"; import { ApiOperation } from "../api"; export interface PageContextProps { changeTab: (tab: string) => void; contrib: ApiOperation[]; } export declare const usePage: () => PageContextProps; export interface PageProps { defaultTab?: string; tabSearchParam?: boolean | string; } export declare const Page: React.FC<React.PropsWithChildren<PageProps>>;