1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-10-16 20:17:25 +00:00
pds-2021-g2-nest/nest_frontend/components/providers/GlobalTheme.js

21 lines
546 B
JavaScript

import React from "react"
import useLocalStorageState from "../../hooks/useLocalStorageState"
import ContextTheme from "../../contexts/ContextTheme"
/**
* Provides {@link ContextTheme} to all contained elements.
*
* @param children
* @returns {JSX.Element}
* @constructor
*/
export default function GlobalTheme({ children }) {
const [theme, setTheme] = useLocalStorageState("theme", "ThemeDark")
return (
<ContextTheme.Provider value={{ theme, setTheme }}>
{children}
</ContextTheme.Provider>
)
}