in app/launch/src/hooks/useAppTheme.js [32:44]
export default function useAppTheme() {
const [theme, setTheme] = useRecoilState(themeState)
useEffect(() => {
registerTheme(theme)
}, [theme])
const toggleTheme = useCallback(() => {
setTheme((theme) => nextTheme(theme))
}, [setTheme])
return [theme, toggleTheme]
}