Files
nextjs-server-fetching/presentation/src/app/word-list/components/go-back-button.tsx
2024-01-16 23:53:33 +01:00

16 lines
334 B
TypeScript

'use client'
import { useRouter } from 'next/navigation'
export default function GoBackButton() {
const router = useRouter()
return (
<button
style={{ position: 'absolute' }}
onClick={() => router.push('/presentation')}
>
Go back to presentation
</button>
)
}