Refactor Server Paradigm.
This commit is contained in:
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
import type { DetailedHTMLProps, HTMLAttributes, PropsWithChildren } from "react";
|
||||
type Props = PropsWithChildren<DetailedHTMLProps<HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>>;
|
||||
export default function Head({ children, ...props }: Props): import("react/jsx-runtime").JSX.Element;
|
||||
export {};
|
||||
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
import { jsx as _jsx } from "react/jsx-runtime";
|
||||
export default function Head({ children, ...props }) {
|
||||
return _jsx("head", { ...props, children: children });
|
||||
}
|
||||
Reference in New Issue
Block a user