UNPKG

pricing4react

Version:

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

8 lines (7 loc) 326 B
import { UserContextAttribute } from "../../types"; interface UserContextFormProps { initialData: UserContextAttribute; onSubmit: (attribute: UserContextAttribute) => void; } export declare function UserContextForm({ initialData, onSubmit, }: UserContextFormProps): import("react/jsx-runtime").JSX.Element; export {};