mirror of
https://github.com/microsoft/autogen.git
synced 2025-09-07 07:17:10 +00:00
29 lines
578 B
TypeScript
29 lines
578 B
TypeScript
import * as React from "react";
|
|
import Layout from "../components/layout";
|
|
import { graphql } from "gatsby";
|
|
import RAView from "../components/views/playground/ra";
|
|
|
|
// markup
|
|
const IndexPage = ({ data }: any) => {
|
|
return (
|
|
<Layout meta={data.site.siteMetadata} title="Home" link={"/"}>
|
|
<main style={{ height: "100%" }} className=" h-full ">
|
|
<RAView />
|
|
</main>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export const query = graphql`
|
|
query HomePageQuery {
|
|
site {
|
|
siteMetadata {
|
|
description
|
|
title
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default IndexPage;
|