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.01 kB
import React from 'react'; import { IVeltWireframeCommonProps } from '../../constants'; import { IVeltActivityLogHeaderWireframe } from './VeltActivityLogHeaderWireframe/VeltActivityLogHeaderWireframe'; import { IVeltActivityLogListWireframe } from './VeltActivityLogListWireframe/VeltActivityLogListWireframe'; import { IVeltActivityLogLoadingWireframe } from './VeltActivityLogLoadingWireframe/VeltActivityLogLoadingWireframe'; import { IVeltActivityLogEmptyWireframe } from './VeltActivityLogEmptyWireframe/VeltActivityLogEmptyWireframe'; export interface IVeltActivityLogWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltActivityLogWireframe extends React.FC<IVeltActivityLogWireframeProps> { Header: IVeltActivityLogHeaderWireframe; List: IVeltActivityLogListWireframe; Loading: IVeltActivityLogLoadingWireframe; Empty: IVeltActivityLogEmptyWireframe; } declare const VeltActivityLogWireframe: IVeltActivityLogWireframe; export default VeltActivityLogWireframe;