import Link from 'next/link'; interface Props { id: string; } export default function ExampleItem({ id }: Props) { return (
  • Dynamic Link Example {id}
  • ); }