mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
aa0ba3c30a
Co-authored-by: Jiachi Liu <inbox@huozhi.im> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
15 lines
232 B
JavaScript
15 lines
232 B
JavaScript
import Runtime from '../utils/runtime'
|
|
import Time from '../utils/time'
|
|
|
|
export default function Page() {
|
|
return (
|
|
<div>
|
|
This is a static page.
|
|
<br />
|
|
<Runtime />
|
|
<br />
|
|
<Time />
|
|
</div>
|
|
)
|
|
}
|