UNPKG

pricing4react

Version:

A library of components that ease the integration of feature toggling driven by pricing plans into your React application's UI.

12 lines (11 loc) 444 B
import { RawPricingContext } from "./types"; import "./Form.css"; import "./PricingPlansEditor.css"; interface PricingPlansEditorProps { pricingContext: RawPricingContext; returnTo: string; theme?: string; onSave: (pricingContext: RawPricingContext) => void; } export declare function PricingPlansEditor({ theme, pricingContext, returnTo, onSave, }: PricingPlansEditorProps): import("react/jsx-runtime").JSX.Element; export {};