@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.
11 lines (10 loc) • 764 B
TypeScript
import React from 'react';
import { IVeltNotificationsPanelContentDocumentsListWireframe } from './VeltNotificationsPanelContentDocumentsListWireframe/VeltNotificationsPanelContentDocumentsListWireframe';
import { IVeltWireframeCommonProps } from '../../../../constants';
export interface IVeltNotificationsPanelContentDocumentsWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltNotificationsPanelContentDocumentsWireframe extends React.FC<IVeltNotificationsPanelContentDocumentsWireframeProps> {
List: IVeltNotificationsPanelContentDocumentsListWireframe;
}
declare const VeltNotificationsPanelContentDocumentsWireframe: IVeltNotificationsPanelContentDocumentsWireframe;
export default VeltNotificationsPanelContentDocumentsWireframe;