File size: 439 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import Head from 'next/head'
import React from 'react'

function Foo() {
  const [displayed, toggle] = React.useState(true)

  return (
    <>
      {displayed ? (
        <Head>
          <title>B</title>
        </Head>
      ) : null}
      <button onClick={() => toggle(!displayed)}>toggle</button>
    </>
  )
}

export default () => {
  return (
    <>
      <Head>
        <title>A</title>
      </Head>
      <Foo />
    </>
  )
}