2023-03-09 08:14:29 +00:00
|
|
|
import React from "react";
|
|
|
|
import { actions, useAppBridge } from "@saleor/app-sdk/app-bridge";
|
|
|
|
import { appName } from "./const";
|
|
|
|
|
2023-04-05 18:27:23 +00:00
|
|
|
export const NotReadyPage = () => {
|
2023-03-09 08:14:29 +00:00
|
|
|
const { appBridge } = useAppBridge();
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<h1>{appName}</h1>
|
2023-05-31 16:08:43 +00:00
|
|
|
App can not be used
|
2023-03-09 08:14:29 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|