next.js/test/development/app-dir/server-components-hmr-cache/components/refresh-button.tsx
refresh-button.tsx14 lines218 B
'use client'

import { useRouter } from 'next/navigation'

export function RefreshButton() {
  const { refresh } = useRouter()

  return (
    <button type="button" onClick={refresh}>
      refresh
    </button>
  )
}
Quest for Codev2.0.0
/
SIGN IN