1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
2020-01-21 20:02:50 -07:00

9 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;