React Components
Following are the most components used in react:
- SearchResultsLabel
 
SearchResultsLabel:
It will show whatever user search in the search bar as heading i.e search results for jacket
Example Code:
function App() {
    return (
        <HawkSearch config={hawkConfig}>
            <QueryStringListener />
            <div className="hawk">
                <div className="hawk__header">
                    <SearchBox />
                </div>
                <SearchResultsLabel />
                <div className="hawk__body">
                    <FacetRail />
                    <Results />
                </div>
            </div>
        </HawkSearch>
    );
}
Preview:

Updated over 2 years ago
