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 (
); }; export const query = graphql` query HomePageQuery { site { siteMetadata { description title } } } `; export default IndexPage;