mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-28 01:10:54 +01:00
14 lines
338 B
TypeScript
14 lines
338 B
TypeScript
"use client";
|
|
|
|
import dynamic from "next/dynamic";
|
|
|
|
import type { WidgetComponentProps } from "../definition";
|
|
|
|
const Notebook = dynamic(() => import("./notebook").then((module) => module.Notebook), {
|
|
ssr: false,
|
|
});
|
|
|
|
export default function NotebookWidget(props: WidgetComponentProps<"notebook">) {
|
|
return <Notebook {...props} />;
|
|
}
|