Files
plane/apps/web/app/compat/next/head.tsx
2025-10-20 18:52:02 -07:00

12 lines
342 B
TypeScript

import type { ReactNode } from "react";
/**
* Shim for next/head
* In React Router, use <Meta /> and <Links /> in root.tsx instead
*/
export default function Head({ children }: { children?: ReactNode }) {
// In React Router, head elements should be handled via meta() export
// This is a no-op shim for compatibility
return null;
}