rsnext/test/integration/react-streaming-and-server-components/switchable-runtime/pages/node-rsc.server.js
2022-04-14 14:35:09 +00:00

20 lines
330 B
JavaScript

import Runtime from '../utils/runtime'
import Time from '../utils/time'
export default function Page() {
return (
<div className="node-rsc">
This is a static RSC page.
<br />
<Runtime />
<br />
<Time />
</div>
)
}
Page.title = 'node-rsc'
export const config = {
runtime: 'nodejs',
}