File size: 444 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
import Link from 'next/link'
import React from 'react'

export default function Root({ children }: { children: React.ReactNode }) {
  return (
    <html>
      <body>
        <div>
          <Link prefetch={false} href="/foo">
            foo
          </Link>
        </div>
        <div>
          <Link prefetch={false} href="/foo/bar">
            foo/bar
          </Link>
        </div>
        {children}
      </body>
    </html>
  )
}