Files
vantage/site/components/ThemeScript.tsx
T
mrhid6 1a6cf03c03
Server Deploy / deploy (push) Failing after 1m59s
feat: Removed comments
2026-07-24 09:51:30 +01:00

17 lines
327 B
TypeScript

const script = `
(function(){
try {
var t = localStorage.getItem("vantage-theme");
if (t === "light" || t === "dark") {
document.documentElement.setAttribute("data-theme", t);
}
} catch (e) {}
})();
`;
export function ThemeScript() {
return <script dangerouslySetInnerHTML={{ __html: script }} />;
}