rsnext/test/integration/css-fixtures/multi-page/pages/page2.js
JJ Kasper 01b7c576b4 Breakup CSS test suite (#9715)
* Breakup CSS test suite

* De-dupe next.config.js for css-fixtures
2019-12-11 18:39:09 -05:00

14 lines
323 B
JavaScript

import Link from 'next/link'
export default function Page2() {
return (
<>
<div className="blue-text">This text should be blue.</div>
<br />
<input key={'' + Math.random()} id="text-input" type="text" />
<br />
<Link href="/page1">
<a>Switch page</a>
</Link>
</>
)
}