Interface SearchSidebarProps

The SearchSidebarProps interface represents the props of the SearchSidebar component.

The filtering options for the search results.

The sorting options for the search results.

interface SearchSidebarProps {
    filters?: FilterOptions[];
    sortOptions?: SortOptions[];
}

Properties

filters?: FilterOptions[]
sortOptions?: SortOptions[]