mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 07:09:34 +01:00
12 lines
342 B
TypeScript
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;
|
|
}
|