Interface SearchResultsProps

The SearchResultsProps interface represents the props of the SearchResults component.

The array of results to display.

The number of results to display per page.

interface SearchResultsProps {
    pageSize?: number;
    results: ResultDto[];
}

Properties

Properties

pageSize?: number
results: ResultDto[]