saleor-apps-redis_apl/apps/cms/src/pages/providers.tsx
Lukasz Ostrowski 1da51639fa
Improve CMS app UX & UI (#349)
* Install apps-shared, render null if app is loading in the iframe

Redesign the app

Add notification toasts and imrpve instructions

Change channels list to select

Replace lists with select

* fix build

* Fix build
2023-04-06 12:56:44 +02:00

16 lines
448 B
TypeScript

import { AppLayout } from "../modules/ui/app-layout";
import { ProviderInstances } from "../modules/provider-instances/ui/provider-instances";
import { NextPageWithLayout } from "./_app";
import { ReactElement } from "react";
const Page: NextPageWithLayout = () => <ProviderInstances />;
Page.getLayout = function getLayout(page: ReactElement) {
return (
<main>
<AppLayout>{page}</AppLayout>
</main>
);
};
export default Page;