@raona/components
Version:
React components used at Raona to work with SPFx
11 lines (10 loc) • 418 B
TypeScript
import * as React from 'react';
import 'react-quill/dist/quill.snow.css';
import { WrapperComponentProps } from './WrapperComponent';
export interface SPReactQuillProps extends WrapperComponentProps {
onChange?(e: any): void;
value: string;
defaultValues: string;
placeholder?: string;
}
export declare const SPReactQuill: (props: SPReactQuillProps) => React.ReactElement<SPReactQuillProps>;