solrkit
Version:
 
13 lines (12 loc) • 385 B
TypeScript
/// <reference types="react" />
import * as React from 'react';
import { SingleComponent } from '../context/DataStore';
interface MoreLikeThisProps<T> {
docs: T[];
title?: string;
render: SingleComponent<T>;
}
declare class MoreLikeThis<T> extends React.Component<MoreLikeThisProps<T>> {
render(): JSX.Element;
}
export { MoreLikeThisProps, MoreLikeThis };