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.
18 lines (17 loc) • 504 B
TypeScript
import * as React from "react";
import { SurveyModel } from "survey-core";
interface ISurveyHeaderProps {
survey: SurveyModel;
}
export declare class SurveyHeader extends React.Component<ISurveyHeaderProps, any> {
constructor(props: ISurveyHeaderProps);
private get survey();
private get css();
private rootRef;
componentDidMount(): void;
componentWillUnmount(): void;
private renderTitle;
private renderLogoImage;
render(): React.JSX.Element | null;
}
export {};