survey-react-ui
Version:
A free MIT-licensed React UI component that renders dynamic, interactive JSON-based forms and surveys. You can use it to collect responses from users and send them to your own database.
19 lines (18 loc) • 538 B
TypeScript
import * as React from "react";
import { ListModel } from "survey-core";
import { SurveyElementBase } from "../../reactquestion_element";
interface IListItemProps {
model: ListModel;
item: any;
}
export declare class ListItem extends SurveyElementBase<IListItemProps, any> {
private elementRef;
constructor(props: any);
get model(): ListModel;
get item(): any;
handleKeydown: (event: any) => void;
getStateElement(): any;
render(): React.JSX.Element | null;
componentDidMount(): void;
}
export {};