@atlaskit/renderer
Version:
Renderer component
9 lines (8 loc) • 331 B
TypeScript
import React from 'react';
import type { ReactNode } from 'react';
import type RendererActions from '../../actions/index';
interface WithRendererActionsProps {
render(actions: RendererActions): ReactNode | null;
}
export declare function WithRendererActions({ render }: WithRendererActionsProps): React.JSX.Element;
export {};