import { AlertBase, Button } from "@saleor/macaw-ui"; import React from "react"; import { Typography } from "@material-ui/core"; import { actions, useAppBridge } from "@saleor/app-sdk/app-bridge"; import { appName } from "./const"; const NotReadyPage = () => { const { appBridge } = useAppBridge(); return (

{appName}

App can not be used To configure the app you need to create at least 1 channel
); }; export default NotReadyPage;