2023-05-16 19:07:08 +00:00
|
|
|
import { TextLink } from "@saleor/apps-ui";
|
2023-04-29 09:30:48 +00:00
|
|
|
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}>
|
2023-06-09 09:42:40 +00:00
|
|
|
<Text as="p" marginBottom={1.5}>
|
2023-04-29 09:30:48 +00:00
|
|
|
To configure the App, fill in your Algolia settings to enable products indexing.
|
|
|
|
</Text>
|
2023-06-09 09:42:40 +00:00
|
|
|
<Text as="p" marginBottom={1.5}>
|
2023-04-29 09:30:48 +00:00
|
|
|
Once the App is configured, you will be able to perform initial index of your existing
|
|
|
|
Saleor database.
|
|
|
|
</Text>
|
|
|
|
</Box>
|
|
|
|
);
|
|
|
|
};
|