semantic-ui-react
Version:
The official Semantic-UI-React integration.
21 lines (14 loc) • 583 B
TypeScript
import * as React from 'react'
import { SemanticShorthandContent } from '../../generic'
import SearchResult from './SearchResult'
export interface SearchCategoryLayoutProps extends StrictSearchCategoryLayoutProps {
[key: string]: any
}
export interface StrictSearchCategoryLayoutProps {
/** The rendered category content */
categoryContent: React.ReactElement<any>
/** The rendered results content */
resultsContent: React.ReactElement<any>
}
declare const SearchCategoryLayout: React.StatelessComponent<SearchCategoryLayoutProps>
export default SearchCategoryLayout