File size: 200 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import Link from 'next/link'
import React from 'react'

export default function Page() {
  return (
    <>
      <div id="text">Hello World</div>
      <Link href="/page2">Page 2</Link>
    </>
  )
}