aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/packages/docs/app/components
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2026-03-26 09:01:31 +0800
committerGitHub <noreply@github.com>2026-03-26 09:01:31 +0800
commit3a31d3004b2814cd8a26d49a0f8a96636411dcd2 (patch)
treee86c8d46e73262c67c1755aaf4202cbcd1f8f844 /packages/docs/app/components
parent1aeb0d1f5cf6c5c2492e749e3c25c3649b591c59 (diff)
parent7d0e92e6d3b172adfe552ffae9b97f8dad6f63ae (diff)
downloadDropOut-3a31d3004b2814cd8a26d49a0f8a96636411dcd2.tar.gz
DropOut-3a31d3004b2814cd8a26d49a0f8a96636411dcd2.zip
Merge branch 'main' into feature/multi-instances
Diffstat (limited to 'packages/docs/app/components')
-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 }) {