wix-style-react
Version:
15 lines (12 loc) • 361 B
TypeScript
import * as React from 'react';
export interface EditableTitleProps {
dataHook?: string;
initialValue?: string;
defaultValue?: string;
onSubmit?: (value: string) => void;
maxLength?: number;
autoFocus?: boolean;
onChange?: (e: Event) => void;
value?: string;
}
export default class EditableTitle extends React.Component<EditableTitleProps> {}