7 lines
176 B
TypeScript
Executable file
7 lines
176 B
TypeScript
Executable file
/// <reference types="react" />
|
|
interface Props {
|
|
id: string;
|
|
value: string;
|
|
}
|
|
export declare function HiddenText({ id, value }: Props): JSX.Element;
|
|
export {};
|