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.
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 {};