mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-25 17:13:06 +00:00

* update version, fix component factory bug * add basic structure for deploy * minor fixes, deploy v1 * minor text updated * format fixes * formatting fixes .. webby test samples * update cli command, update views, * packakge.json and other fixes * format fixes
29 lines
601 B
TypeScript
29 lines
601 B
TypeScript
import * as React from "react";
|
|
import Layout from "../components/layout";
|
|
import { graphql } from "gatsby";
|
|
import DeployManager from "../components/views/deploy/manager";
|
|
|
|
// markup
|
|
const DeployPage = ({ data }: any) => {
|
|
return (
|
|
<Layout meta={data.site.siteMetadata} title="Home" link={"/deploy"}>
|
|
<main style={{ height: "100%" }} className=" h-full ">
|
|
<DeployManager />
|
|
</main>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export const query = graphql`
|
|
query HomePageQuery {
|
|
site {
|
|
siteMetadata {
|
|
description
|
|
title
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default DeployPage;
|