mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 17:00:54 +01:00
* feat: update prettier configuration for print width * chore: apply code formatting to entire repository * fix: remove build files * fix: format issue --------- Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
14 lines
361 B
TypeScript
14 lines
361 B
TypeScript
import dynamic from "next/dynamic";
|
|
|
|
import "@mantine/tiptap/styles.css";
|
|
|
|
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} />;
|
|
}
|