UNPKG

@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.

23 lines (22 loc) 2.1 kB
import React from 'react'; import { IVeltWireframeCommonProps } from '../../constants'; import { IVeltInlineCommentsSectionCommentCountWireframeProps } from './VeltInlineCommentsSectionCommentCountWireframe/VeltInlineCommentsSectionCommentCountWireframe'; import { IVeltInlineCommentsSectionComposerContainerWireframeProps } from './VeltInlineCommentsSectionComposerContainerWireframe/VeltInlineCommentsSectionComposerContainerWireframe'; import { IVeltInlineCommentsSectionListWireframeProps } from './VeltInlineCommentsSectionListWireframe/VeltInlineCommentsSectionListWireframe'; import { IVeltInlineCommentsSectionPanelWireframeProps } from './VeltInlineCommentsSectionPanelWireframe/VeltInlineCommentsSectionPanelWireframe'; import { IVeltInlineCommentsSectionSkeletonWireframeProps } from './VeltInlineCommentsSectionSkeletonWireframe/VeltInlineCommentsSectionSkeletonWireframe'; import { IVeltInlineCommentsSectionSortingDropdownWireframe } from './VeltInlineCommentsSectionSortingDropdownWireframe/VeltInlineCommentsSectionSortingDropdownWireframe'; import { IVeltInlineCommentsSectionFilterDropdownWireframe } from './VeltInlineCommentsSectionFilterDropdownWireframe/VeltInlineCommentsSectionFilterDropdownWireframe'; export interface IVeltInlineCommentsSectionWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltInlineCommentsSectionWireframe extends React.FC<IVeltInlineCommentsSectionWireframeProps> { CommentCount: React.FC<IVeltInlineCommentsSectionCommentCountWireframeProps>; ComposerContainer: React.FC<IVeltInlineCommentsSectionComposerContainerWireframeProps>; List: React.FC<IVeltInlineCommentsSectionListWireframeProps>; Panel: React.FC<IVeltInlineCommentsSectionPanelWireframeProps>; Skeleton: React.FC<IVeltInlineCommentsSectionSkeletonWireframeProps>; SortingDropdown: IVeltInlineCommentsSectionSortingDropdownWireframe; FilterDropdown: IVeltInlineCommentsSectionFilterDropdownWireframe; } declare const VeltInlineCommentsSectionWireframe: IVeltInlineCommentsSectionWireframe; export default VeltInlineCommentsSectionWireframe;