@veltdev/react
Version:
Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.
11 lines (10 loc) • 758 B
TypeScript
import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltCommentDialogStatusDropdownContentItemWireframe } from './VeltCommentDialogStatusDropdownContentItemWireframe/VeltCommentDialogStatusDropdownContentItemWireframe';
export interface IVeltCommentDialogStatusDropdownContentWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogStatusDropdownContentWireframe extends React.FC<IVeltCommentDialogStatusDropdownContentWireframeProps> {
Item: IVeltCommentDialogStatusDropdownContentItemWireframe;
}
declare const VeltCommentDialogStatusDropdownContentWireframe: IVeltCommentDialogStatusDropdownContentWireframe;
export default VeltCommentDialogStatusDropdownContentWireframe;