feat(BOOK-414): Added hotel branding themes to hotelpages
Approved-by: Matilda Landström
This commit is contained in:
18
apps/scandic-web/components/ThemeUpdater/index.tsx
Normal file
18
apps/scandic-web/components/ThemeUpdater/index.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
"use client"
|
||||
|
||||
import { useEffect } from "react"
|
||||
|
||||
import { type Theme, THEMES } from "@/utils/theme/types"
|
||||
|
||||
interface ThemeUpdaterProps {
|
||||
theme: Theme
|
||||
}
|
||||
|
||||
export default function ThemeUpdater({ theme }: ThemeUpdaterProps) {
|
||||
useEffect(() => {
|
||||
document.body.classList.remove(...THEMES)
|
||||
document.body.classList.add(theme)
|
||||
}, [theme])
|
||||
|
||||
return null
|
||||
}
|
||||
Reference in New Issue
Block a user