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