hackoon
Version:
Immunefi Hackoon CLI
9 lines (8 loc) • 391 B
TypeScript
import React, { ChangeEvent, FormEvent } from "react";
declare function Input({ input, handleInputChange, handleSubmit, }: {
input: string;
handleInputChange: (event: ChangeEvent<HTMLInputElement>) => void;
handleSubmit: (event: FormEvent<HTMLFormElement>) => void;
}): React.JSX.Element;
declare const _default: React.MemoExoticComponent<typeof Input>;
export default _default;