InstantSearch / React / V6 / API reference

PoweredBy | React InstantSearch V6 (Deprecated)

Deprecated content
This documentation is for a deprecated version of React InstantSearch. Some features and settings may be missing or their usage may have changed. Refer to the documentation for the latest version of React InstantSearch for up-to-date information.

Signature

Signature
<PoweredBy
  // Optional parameters
  translations={object}
/>

About this widget

The poweredBy widget is used to display the Algolia logo to redirect to our website.

Algolia requires that you use this widget if you only use your free usage credits, or are on a community or free plan.

Examples

1
2
3
import { PoweredBy } from 'react-instantsearch-dom';

<PoweredBy />

Props

translations

Optional
Type: object

A mapping of keys to translation values.

  • searchBy: the label for the widget displayed before the Algolia logo.
1
2
3
4
5
<PoweredBy
  translations={{
    searchBy: 'Search by',
  }}
/>
Did you find this page helpful?