react-instantsearch-core
Version:
⚡ Lightning-fast search for React, by Algolia
10 lines (9 loc) • 379 B
TypeScript
import React from 'react';
import type { FeedsConnectorParams } from 'instantsearch.js/es/connectors/feeds/connectFeeds';
import type { ReactNode } from 'react';
export type FeedsProps = FeedsConnectorParams & {
renderFeed: ({ feedID }: {
feedID: string;
}) => ReactNode;
};
export declare function Feeds({ renderFeed, ...props }: FeedsProps): React.JSX.Element;