๐Ÿ“ฆ cloudflare / vinext

๐Ÿ“„ page.tsx ยท 13 lines
1
2
3
4
5
6
7
8
9
10
11
12
13import { RefreshButton } from "./refresh-button";

export default async function RefreshPage() {
  const time = Date.now();
  return (
    <div>
      <h1>Refresh Test</h1>
      <div id="time">{time}</div>
      <RefreshButton />
    </div>
  );
}