forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_app.tsx
51 lines (43 loc) · 1.5 KB
/
_app.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import React, { useEffect } from 'react'
import { AppProps } from 'next/app'
import Head from 'next/head'
import { useTheme, ThemeProvider } from '@primer/components'
import '@primer/css/index.scss'
import { defaultThemeProps } from 'components/lib/getThemeProps'
const App: React.FC<AppProps> = ({ Component, pageProps }) => {
return (
<>
<Head>
<meta charSet="utf-8" />
<title>GitHub Documentation</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="alternate icon" type="image/png" href="/assets/images/site/favicon.png" />
<link rel="icon" type="image/svg+xml" href="/assets/images/site/favicon.svg" />
<meta
name="google-site-verification"
content="OgdQc0GZfjDI52wDv1bkMT-SLpBUo_h5nn9mI9L22xQ"
/>
<meta
name="google-site-verification"
content="c1kuD-K2HIVF635lypcsWPoD4kilo5-jA_wBFyT4uMY"
/>
<meta name="csrf-token" content="$CSRFTOKEN$" />
</Head>
<ThemeProvider>
<SetTheme themeProps={pageProps.themeProps} />
<Component {...pageProps} />
</ThemeProvider>
</>
)
}
const SetTheme = ({ themeProps }: { themeProps: typeof defaultThemeProps }) => {
// Cause primer/components to re-evaluate the 'auto' color mode on client side render
const { setColorMode } = useTheme()
useEffect(() => {
setTimeout(() => {
setColorMode(themeProps.colorMode as any)
})
}, [])
return null
}
export default App