react-code-dataset / next.js /examples /cms-wordpress /src /components /Globals /PreviewNotice /PreviewNotice.tsx
| "use client"; | |
| import styles from "./PreviewNotice.module.css"; | |
| import { usePathname } from "next/navigation"; | |
| export const PreviewNotice = () => { | |
| const pathname = usePathname(); | |
| return ( | |
| <aside className={styles.preview}> | |
| Preview mode enabled | |
| <a | |
| className={styles.link} | |
| href={`/api/exit-preview?path=${encodeURIComponent(pathname)}`} | |
| > | |
| Exit | |
| </a> | |
| </aside> | |
| ); | |
| }; | |