1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

9 lines
246 B
JavaScript
Raw Normal View History

2020-01-17 02:50:57 -07:00
import React from "react";
2020-01-21 20:02:50 -07:00
import dynamic from "next/dynamic";
import Loading from "~/components/Loading";
const Layout = dynamic(() => import("~/components/Layout"), { loading: Loading });
2020-01-19 22:03:47 -07:00
const Index = () => <Layout />;
2020-01-17 02:50:57 -07:00
export default Index;