File size: 200 Bytes
bea55e2
 
 
 
 
 
 
1
2
3
4
5
6
7
8
/**
 * Template — passthrough.
 * Standard Next.js navigation. No custom transitions.
 */
export default function Template({ children }: { children: React.ReactNode }) {
  return <>{children}</>;
}