mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-04-19 06:18:27 +00:00
8 lines
246 B
JavaScript
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;
|