Files
writer-work-flow/apps/web/components/ThemeScript.tsx
2026-06-28 07:31:20 +02:00

11 lines
223 B
TypeScript

import { themeBootstrapScript } from "@/lib/ui/theme";
export function ThemeScript() {
return (
<script
dangerouslySetInnerHTML={{ __html: themeBootstrapScript() }}
suppressHydrationWarning
/>
);
}