rsnext/test/e2e/switchable-runtime/pages/edge.js
Tim Neutkens aa0ba3c30a
Ensure server components entries are not part of the pages buildmanifest (#38416)
Co-authored-by: Jiachi Liu <inbox@huozhi.im>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
2022-07-07 22:17:17 +02:00

18 lines
288 B
JavaScript

import Runtime from '../utils/runtime'
import Time from '../utils/time'
export default function Page() {
return (
<div>
This is a SSR page.
<br />
<Runtime />
<br />
<Time />
</div>
)
}
export const config = {
runtime: 'experimental-edge',
}