reorganize providers

This commit is contained in:
horsefacts
2024-11-25 14:57:10 -05:00
committed by lucas-neynar
parent a8ba2397bd
commit 530fb860c3
6 changed files with 32 additions and 25 deletions

View File

@@ -1,9 +1,15 @@
import { App } from "~/components/App";
"use client";
import dynamic from "next/dynamic";
const Demo = dynamic(() => import("~/components/Demo"), {
ssr: false,
});
export default function Home() {
return (
<main className="min-h-screen flex flex-col p-4">
<App />
<Demo />
</main>
);
}