pricing4react
Version:
A library of components that ease the integration of feature toggling driven by pricing plans into your React application's UI.
9 lines (8 loc) • 346 B
TypeScript
import { Attribute } from "../../types";
interface AttributeFormProps {
initialData: Attribute;
onValidation: (name: string) => boolean;
onSubmit: (attribute: Attribute) => void;
}
export declare function AttributeForm({ initialData, onSubmit, onValidation, }: AttributeFormProps): import("react/jsx-runtime").JSX.Element;
export {};