saleor-apps-redis_apl/apps/search/src/components/MainInstructions.tsx
Krzysztof Wolski 69fe973121
Search: Add media and stock flag (#874)
* Add media and stock flag

* Add UI for updating the queries

* Add update info to changelog
2023-08-16 14:08:07 +02:00

19 lines
697 B
TypeScript

import { TextLink } from "@saleor/apps-ui";
import { Box, PropsWithBox, Text } from "@saleor/macaw-ui/next";
const SALEOR_EVENTS_DOCS_URL =
"https://docs.saleor.io/docs/3.x/developer/extending/apps/asynchronous-webhooks#available-webhook-events";
export const MainInstructions = ({ children, ...props }: PropsWithBox<{}>) => {
return (
<Box {...props}>
<Text as="p" marginBottom={1.5}>
To configure the App, fill in your Algolia settings to enable products indexing.
</Text>
<Text as="p" marginBottom={1.5}>
Once the App is configured, you will be able to perform initial index of your existing
Saleor database.
</Text>
</Box>
);
};