pricing4react
Version:
A library of components that ease the integration of feature toggling driven by pricing plans into your React application's UI.
11 lines (10 loc) • 366 B
TypeScript
import { Dispatch, SetStateAction } from "react";
import { Attribute } from "../../types";
interface DefaultValueProps {
id: string;
name: string;
form: Attribute;
setForm: Dispatch<SetStateAction<Attribute>>;
}
export declare function DefaultValue({ id, name, form, setForm }: DefaultValueProps): import("react/jsx-runtime").JSX.Element;
export {};