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',
}