rsnext/test/e2e/app-dir/app/pages/index.js
Jiachi Liu 4171cf3866
test: pages react version with react hook in deployment (#48907)
testing react version in pages for deployment env
2023-05-09 11:16:56 +02:00

15 lines
355 B
JavaScript

import React from 'react'
import Link from 'next/link'
import styles from '../styles/shared.module.css'
export default function Page() {
return (
<>
<p id="hello" className={styles.content}>
hello from pages/index
</p>
<Link href="/dashboard">Dashboard</Link>
<p id="react-version">{React.version}</p>
</>
)
}