rsnext/test/integration/chunking/pages/page3.js
Janicklas Ralph d3293f7cd6 Dynamic granular chunking (#9090)
* Enable granular chunks config for all chunk types

Adding comment

Bug fix

* Update index.test.js

* Update index.test.js

* Fix test cases. Adding next/link to not trigger a different bug

* Removing obsolete comment
2019-10-29 21:27:41 -04:00

13 lines
244 B
JavaScript

import Link from 'next/link'
import('lodash').then(_ => console.log(_.chunk(['a', 'b', 'c', 'd'], 2)))
const Page = () => {
return (
<div>
<h2>Page3</h2>
<Link href='/page2'>Page2</Link>
</div>
)
}
export default Page