@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.
15 lines (14 loc) • 1.14 kB
TypeScript
import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltInlineReactionsSectionListWireframeProps } from './VeltInlineReactionsSectionListWireframe/VeltInlineReactionsSectionListWireframe';
import { IVeltInlineReactionsSectionPanelWireframeProps } from './VeltInlineReactionsSectionPanelWireframe/VeltInlineReactionsSectionPanelWireframe';
import { IVeltInlineReactionsSectionToolContainerWireframeProps } from './VeltInlineReactionsSectionToolContainerWireframe/VeltInlineReactionsSectionToolContainerWireframe';
export interface IVeltInlineReactionsSectionWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltInlineReactionsSectionWireframe extends React.FC<IVeltInlineReactionsSectionWireframeProps> {
List: React.FC<IVeltInlineReactionsSectionListWireframeProps>;
Panel: React.FC<IVeltInlineReactionsSectionPanelWireframeProps>;
ToolContainer: React.FC<IVeltInlineReactionsSectionToolContainerWireframeProps>;
}
declare const VeltInlineReactionsSectionWireframe: IVeltInlineReactionsSectionWireframe;
export default VeltInlineReactionsSectionWireframe;