17 lines
327 B
TypeScript
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 }} />;
|
|
}
|