survey-react-ui
Version:
survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.
12 lines (11 loc) • 320 B
TypeScript
import * as React from "react";
import { SurveyModel } from "survey-core";
interface ILogoImageProps {
data: SurveyModel;
}
export declare class LogoImage extends React.Component<ILogoImageProps, any> {
constructor(props: ILogoImageProps);
private get survey();
render(): React.JSX.Element;
}
export {};