
* Update E&M Provider UI (#459) * Emails and messages: use App UI package (#511) * Add changeset
14 lines
299 B
TypeScript
14 lines
299 B
TypeScript
import React from "react";
|
|
import { actions, useAppBridge } from "@saleor/app-sdk/app-bridge";
|
|
import { appName } from "./const";
|
|
|
|
export const NotReadyPage = () => {
|
|
const { appBridge } = useAppBridge();
|
|
|
|
return (
|
|
<div>
|
|
<h1>{appName}</h1>
|
|
App can not be used
|
|
</div>
|
|
);
|
|
};
|