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.

17 lines (16 loc) 1.37 kB
import React from 'react'; import { IVeltWireframeCommonProps } from '../../../constants'; import { IVeltNotificationsPanelHeaderTabDocumentsWireframe } from './VeltNotificationsPanelHeaderTabDocumentsWireframe/VeltNotificationsPanelHeaderTabDocumentsWireframe'; import { IVeltNotificationsPanelHeaderTabForYouWireframe } from './VeltNotificationsPanelHeaderTabForYouWireframe/VeltNotificationsPanelHeaderTabForYouWireframe'; import { IVeltNotificationsPanelHeaderTabPeopleWireframe } from './VeltNotificationsPanelHeaderTabPeopleWireframe/VeltNotificationsPanelHeaderTabPeopleWireframe'; import { IVeltNotificationsPanelHeaderTabAllWireframe } from './VeltNotificationsPanelHeaderTabAllWireframe/VeltNotificationsPanelHeaderTabAllWireframe'; export interface IVeltNotificationsPanelHeaderWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltNotificationsPanelHeaderWireframe extends React.FC<IVeltNotificationsPanelHeaderWireframeProps> { TabAll: IVeltNotificationsPanelHeaderTabAllWireframe; TabDocuments: IVeltNotificationsPanelHeaderTabDocumentsWireframe; TabForYou: IVeltNotificationsPanelHeaderTabForYouWireframe; TabPeople: IVeltNotificationsPanelHeaderTabPeopleWireframe; } declare const VeltNotificationsPanelHeaderWireframe: IVeltNotificationsPanelHeaderWireframe; export default VeltNotificationsPanelHeaderWireframe;