
* 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
16 lines
448 B
TypeScript
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;
|