react-code-dataset / next.js /test /development /app-dir /server-components-hmr-cache /components /refresh-button.tsx
| 'use client' | |
| import { useRouter } from 'next/navigation' | |
| export function RefreshButton() { | |
| const { refresh } = useRouter() | |
| return ( | |
| <button type="button" onClick={refresh}> | |
| refresh | |
| </button> | |
| ) | |
| } | |