mirror of
https://github.com/yude-jp/yude.jp
synced 2025-04-06 15:17:27 +09:00
Revert 愚か
This commit is contained in:
parent
9cc542ecdf
commit
df9947ecf8
@ -1,6 +1,6 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
|
||||||
const getServerSideTheme = _ => {
|
const getInitialTheme = _ => {
|
||||||
if (typeof window !== "undefined" && window.localStorage) {
|
if (typeof window !== "undefined" && window.localStorage) {
|
||||||
const storedPrefs = window.localStorage.getItem("color-theme")
|
const storedPrefs = window.localStorage.getItem("color-theme")
|
||||||
if (typeof storedPrefs === "string") {
|
if (typeof storedPrefs === "string") {
|
||||||
@ -19,10 +19,10 @@ const getServerSideTheme = _ => {
|
|||||||
|
|
||||||
const ThemeContext = React.createContext()
|
const ThemeContext = React.createContext()
|
||||||
|
|
||||||
export default ThemeContext
|
export default T
|
||||||
|
|
||||||
export const ThemeProvider = ({ initialTheme, children }) => {
|
export const ThemeProvider = ({ initialTheme, children }) => {
|
||||||
const [theme, setTheme] = React.useState(getServerSideTheme)
|
const [theme, setTheme] = React.useState(getInitialTheme)
|
||||||
|
|
||||||
const rawSetTheme = theme => {
|
const rawSetTheme = theme => {
|
||||||
const root = window.document.documentElement
|
const root = window.document.documentElement
|
||||||
|
Loading…
Reference in New Issue
Block a user