7 lines
244 B
TypeScript
7 lines
244 B
TypeScript
/** @jsx jsx */
|
|
import { Ref } from 'react';
|
|
import { jsx } from '@emotion/react';
|
|
export default function DummyInput({ innerRef, ...props }: JSX.IntrinsicElements['input'] & {
|
|
readonly innerRef: Ref<HTMLInputElement>;
|
|
}): jsx.JSX.Element;
|