diff options
| author | 2026-03-26 09:23:07 +0800 | |
|---|---|---|
| committer | 2026-03-26 09:23:07 +0800 | |
| commit | f8b4bcb3bdc8f11323103081ef8c05b06159d684 (patch) | |
| tree | e86c8d46e73262c67c1755aaf4202cbcd1f8f844 /packages/docs/app/components/mermaid.tsx | |
| parent | 1812ca8974aee347b61bd415c1e2b63a205137dd (diff) | |
| parent | 94b0d8e208363c802c12b56d8bdbef574dd1fb91 (diff) | |
| download | DropOut-f8b4bcb3bdc8f11323103081ef8c05b06159d684.tar.gz DropOut-f8b4bcb3bdc8f11323103081ef8c05b06159d684.zip | |
Merge branch 'main' of https://github.com/HydroRoll-Team/DropOut
Diffstat (limited to 'packages/docs/app/components/mermaid.tsx')
| -rw-r--r-- | packages/docs/app/components/mermaid.tsx | 8 |
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 }) { |