Theme selector
Theme selector set up
const [themeMode, setThemeMode] = useState<ThemeModeType>(ThemeModeType.light);const handleThemeSwitch = () =>
setThemeMode(themeMode === ThemeModeType.light ?
ThemeModeType.dark :
ThemeModeType.light);<ClickUI
themeMode={themeMode}
topBarSettings={{
onThemeSwitch:handleThemeSwitch
}}
/>Last updated

