@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) • 1.06 kB
TypeScript
import React from 'react';
import { IVeltNotificationsPanelContentAllListItemContentWireframe } from './VeltNotificationsPanelContentAllListItemContentWireframe/VeltNotificationsPanelContentAllListItemContentWireframe';
import { IVeltNotificationsPanelContentAllListItemLabelWireframe } from './VeltNotificationsPanelContentAllListItemLabelWireframe/VeltNotificationsPanelContentAllListItemLabelWireframe';
import { IVeltWireframeCommonProps } from '../../../../../../constants';
export interface IVeltNotificationsPanelContentAllListItemWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltNotificationsPanelContentAllListItemWireframe extends React.FC<IVeltNotificationsPanelContentAllListItemWireframeProps> {
Label: IVeltNotificationsPanelContentAllListItemLabelWireframe;
Content: IVeltNotificationsPanelContentAllListItemContentWireframe;
}
declare const VeltNotificationsPanelContentAllListItemWireframe: IVeltNotificationsPanelContentAllListItemWireframe;
export default VeltNotificationsPanelContentAllListItemWireframe;