pricing4react
Version:
A library of components that ease the integration of feature toggling driven by pricing plans into your React application's UI.
10 lines (9 loc) • 412 B
TypeScript
import { RawPricingContext } from "./types";
interface PricingConfigurationRoutesProps {
pricingContext: RawPricingContext;
returnTo: string;
theme?: string;
onSave: (pricingContext: RawPricingContext) => void;
}
export declare function PricingConfigurationRoutes({ pricingContext, returnTo, theme, onSave, }: PricingConfigurationRoutesProps): import("react/jsx-runtime").JSX.Element;
export {};