Renamed pages

This commit is contained in:
Valtteri Karesto
2021-11-25 17:28:15 +02:00
parent 8f2c78b08b
commit 9ae9db984d
3 changed files with 2 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
import type { NextPage } from "next";
import Head from "next/head";
import dynamic from "next/dynamic";
import type { NextPage } from "next";
const HooksEditor = dynamic(() => import("../../components/HooksEditor"), {
ssr: false,
});
@@ -13,9 +13,6 @@ const Footer = dynamic(() => import("../../components/Footer"), {
const Home: NextPage = () => {
return (
<>
<Head>
<title>XRPL Hooks Playground</title>
</Head>
<main style={{ display: "flex", flex: 1 }}>
<HooksEditor />
</main>