1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/nest_frontend/components/providers/GlobalTheme.js

22 lines
546 B
JavaScript
Raw Normal View History

2021-04-26 16:36:41 +00:00
import React from "react"
2021-04-29 14:58:31 +00:00
import useLocalStorageState from "../../hooks/useLocalStorageState"
import ContextTheme from "../../contexts/ContextTheme"
2021-04-26 16:36:41 +00:00
/**
* 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 (
2021-05-11 14:37:15 +00:00
<ContextTheme.Provider value={{ theme, setTheme }}>
2021-04-26 16:36:41 +00:00
{children}
</ContextTheme.Provider>
)
}