survey-creator-react
Version:
Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.
12 lines (11 loc) • 356 B
TypeScript
import * as React from "react";
interface ISurfacePlaceholderProps {
name: string;
placeholderTitleText: string;
placeholderDescriptionText: string;
}
export declare class SurfacePlaceholder extends React.Component<ISurfacePlaceholderProps, any> {
constructor(props: ISurfacePlaceholderProps);
render(): React.JSX.Element;
}
export {};