Skip to main content

SearchSearchableResourceResult

SearchSearchableResourceResult(props): Element

Component for displaying resource items in table with resource title Similar to SearchResults but with non-clickable title

Parameters

props

SearchSearchableResourceResultProps

SearchSearchableResourceResultProps

Returns

Element

Example

function MyComponent() {
const [items, setItems] = useState([...]);

return (
<SearchSearchableResourceResult resourceName="Contact" items={items}
);
}