UNPKG

next-superjson-plugin

Version:

Automatically transform your Next.js Pages to use SuperJSON with SWC

8 lines 343 B
"use client"; import { jsx as _jsx } from "react/jsx-runtime"; import { withSuperJSONPage } from "./tools"; export default function SuperJSONComponent({ component, props, children }) { const WithSuperJSON = withSuperJSONPage(component); return _jsx(WithSuperJSON, { ...props, children: children }); } //# sourceMappingURL=client.js.map