import { NextPage } from "next"; import { useAppBridge } from "@saleor/app-sdk/app-bridge"; import { useEffect } from "react"; import { useIsMounted } from "usehooks-ts"; import { useRouter } from "next/router"; import { isInIframe } from "@saleor/apps-shared"; const IndexPage: NextPage = () => { const { appBridgeState } = useAppBridge(); const isMounted = useIsMounted(); const { replace } = useRouter(); useEffect(() => { if (isMounted() && appBridgeState?.ready) { replace("/configuration"); } }, [isMounted, appBridgeState?.ready, replace]); if (isInIframe()) { return Loading...; } return (
This is Saleor App that allows to use external service to handle taxes.
Install the app in your Saleor instance and open it in Dashboard.