lookingglass/hyperglass/ui/pages/index.js
2020-02-24 09:06:07 -07:00

8 lines
246 B
JavaScript

import React from "react";
import dynamic from "next/dynamic";
import Loading from "~/components/Loading";
const Layout = dynamic(() => import("~/components/Layout"), { loading: Loading });
const Index = () => <Layout />;
export default Index;