Getting Started
Ready to move ahead with Reactify Search? Start here!
1. Read the User Guide
User Guide2. Implementing on a Shopify Liquid Theme?
3. Install
npm install @usereactify/search4. Context
import React from "react";
import { ReactifySearchProvider } from "@usereactify/search";
export const SearchPage: React.FC = () => (
<ReactifySearchProvider
mode="search"
shopifyPermanentDomain="usereactify-demo.myshopify.com"
market="12345" // optionally the ID of the Shopify market to use
>
...
</ReactifySearchProvider>
);4. Components
Last updated