5 lines
165 B
JavaScript
5 lines
165 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
|
|
export default function Head({ children, ...props }) {
|
|
return _jsx("head", { ...props, children: children });
|
|
}
|