|
|
@@ -5,6 +5,8 @@ import {Layout, Menu, LocaleProvider } from 'antd';
|
|
|
import Deploy from '../common/deploy/Deploy';
|
|
|
import Schema from '../common/schema/Schema';
|
|
|
import Graphql from "../common/graphql/Graphql";
|
|
|
+import Notification from "../common/notification/Notification";
|
|
|
+import Metabase from "../common/metabase/Metabase";
|
|
|
|
|
|
const { SubMenu } = Menu;
|
|
|
const { Content } = Layout;
|
|
|
@@ -54,6 +56,10 @@ class CloudFunction extends Component {
|
|
|
return <GenerateJs />;
|
|
|
case 'graphiql':
|
|
|
return <Graphql />;
|
|
|
+ case 'metabase':
|
|
|
+ return <Metabase />;
|
|
|
+ case 'notification':
|
|
|
+ return <Notification />;
|
|
|
default:
|
|
|
return <Graphql />
|
|
|
}
|