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.03 kB
import React from 'react'; import { IVeltWireframeCommonProps } from '../../../constants'; import { IVeltNotificationsPanelContentAllWireframe } from './VeltNotificationsPanelContentAllWireframe/VeltNotificationsPanelContentAllWireframe'; import { IVeltNotificationsPanelContentDocumentsWireframe } from './VeltNotificationsPanelContentDocumentsWireframe/VeltNotificationsPanelContentDocumentsWireframe'; import { IVeltNotificationsPanelContentForYouWireframe } from './VeltNotificationsPanelContentForYouWireframe/VeltNotificationsPanelContentForYouWireframe'; import { IVeltNotificationsPanelContentPeopleWireframe } from './VeltNotificationsPanelContentPeopleWireframe/VeltNotificationsPanelContentPeopleWireframe'; import { IVeltNotificationsPanelContentLoadMoreWireframe } from './VeltNotificationsPanelContentLoadMoreWireframe/VeltNotificationsPanelContentLoadMoreWireframe'; import { IVeltNotificationsPanelContentListWireframe } from './VeltNotificationsPanelContentListWireframe/VeltNotificationsPanelContentListWireframe'; import { IVeltNotificationsPanelContentAllReadContainerWireframe } from './VeltNotificationsPanelContentAllReadContainerWireframe/VeltNotificationsPanelContentAllReadContainerWireframe'; export interface IVeltNotificationsPanelContentWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltNotificationsPanelContentWireframe extends React.FC<IVeltNotificationsPanelContentWireframeProps> { All: IVeltNotificationsPanelContentAllWireframe; ForYou: IVeltNotificationsPanelContentForYouWireframe; Documents: IVeltNotificationsPanelContentDocumentsWireframe; People: IVeltNotificationsPanelContentPeopleWireframe; LoadMore: IVeltNotificationsPanelContentLoadMoreWireframe; List: IVeltNotificationsPanelContentListWireframe; AllReadContainer: IVeltNotificationsPanelContentAllReadContainerWireframe; } declare const VeltNotificationsPanelContentWireframe: IVeltNotificationsPanelContentWireframe; export default VeltNotificationsPanelContentWireframe;