10 lines
237 B
TypeScript
Vendored
10 lines
237 B
TypeScript
Vendored
'use client';
|
|
import { Link } from './link';
|
|
import { usePathname } from 'next/navigation';
|
|
|
|
export const BackButton = () => {
|
|
const pathname = usePathname();
|
|
if (pathname == '/') return null;
|
|
return <Link href="/">Back</Link>;
|
|
};
|