mycrossword
Version:
React crossword component
10 lines (9 loc) • 388 B
TypeScript
import * as React from 'react';
import './GridInput.css';
interface GridInputProps {
onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
onKeyDown: (event: React.KeyboardEvent<HTMLInputElement>) => void;
visible: boolean;
}
declare const GridInput: React.ForwardRefExoticComponent<GridInputProps & React.RefAttributes<HTMLInputElement>>;
export default GridInput;