aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/packages/docs/app/components/mermaid.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/docs/app/components/mermaid.tsx')
-rw-r--r--packages/docs/app/components/mermaid.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/docs/app/components/mermaid.tsx b/packages/docs/app/components/mermaid.tsx
index bb25f2d..2df47cc 100644
--- a/packages/docs/app/components/mermaid.tsx
+++ b/packages/docs/app/components/mermaid.tsx
@@ -1,11 +1,11 @@
-'use client';
+"use client";
-import { useEffect, useRef } from 'react';
-import mermaid from 'mermaid';
+import mermaid from "mermaid";
+import { useEffect, useRef } from "react";
mermaid.initialize({
startOnLoad: false,
- theme: 'default',
+ theme: "default",
});
export function Mermaid({ chart }: { chart: string }) {