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.

13 lines (12 loc) 730 B
import React from 'react'; import { IVeltWireframeCommonProps } from '../../../constants'; import { IVeltCommentsSidebarV2ListItem } from './VeltCommentsSidebarV2ListItem/VeltCommentsSidebarV2ListItem'; import { IVeltCommentsSidebarV2ListGroupHeader } from './VeltCommentsSidebarV2ListGroupHeader/VeltCommentsSidebarV2ListGroupHeader'; export interface IVeltCommentsSidebarV2ListProps extends IVeltWireframeCommonProps { } export interface IVeltCommentsSidebarV2List extends React.FC<IVeltCommentsSidebarV2ListProps> { Item: IVeltCommentsSidebarV2ListItem; GroupHeader: IVeltCommentsSidebarV2ListGroupHeader; } declare const VeltCommentsSidebarV2List: IVeltCommentsSidebarV2List; export default VeltCommentsSidebarV2List;