mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-11 17:29:44 +00:00
12 lines
246 B
TypeScript
12 lines
246 B
TypeScript
// dev url: http://localhost:5173/dev-extensions/template-ext-next/out
|
|
"use client"
|
|
|
|
import dynamic from "next/dynamic"
|
|
|
|
const Main = dynamic(() => import("@/components/main"), {
|
|
ssr: false
|
|
})
|
|
export default function Home() {
|
|
return <Main />
|
|
}
|