forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
38 lines (34 loc) · 795 Bytes
/
index.js
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
import { useEffect, useState } from 'react'
import Loading from '../components/Loading'
function useMounted() {
const [mounted, setMounted] = useState(false)
useEffect(() => setMounted(true), [])
return mounted
}
export default function HomePage() {
const isMounted = useMounted()
return (
<main>
<section>
<h1>This section is server-side rendered.</h1>
</section>
{isMounted ? (
<section>
<h2>
This section is <em>only</em> client-side rendered.
</h2>
</section>
) : (
<Loading />
)}
<style jsx>{`
section {
align-items: center;
display: flex;
height: 50vh;
justify-content: center;
}
`}</style>
</main>
)
}