Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Following are the most components used in react:

  • SearchResultsLabel

  1. SearchResultsLabel:
    It will show whatever user search in the search bar as heading i.e search results for jacket

    Example Code:

    Code Block
    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:

...