react-winplaza-98
Version:
React components with a Win98 a e s t h e c t i c
11 lines (10 loc) • 339 B
TypeScript
/// <reference types="react" />
interface OptionContextProps {
name: string;
value?: string;
defaultValue?: string;
onChange?: (value: string) => void;
}
export declare const OptionContext: import("react").Context<OptionContextProps | undefined>;
export declare const useOptionContext: () => OptionContextProps;
export {};