10 lines
385 B
JavaScript
10 lines
385 B
JavaScript
|
"use client";
|
||
|
|
||
|
import React, { useContext } from "react";
|
||
|
import { TemplateContext } from "../../shared/lib/app-router-context.shared-runtime";
|
||
|
export default function RenderFromTemplateContext() {
|
||
|
const children = useContext(TemplateContext);
|
||
|
return /*#__PURE__*/ React.createElement(React.Fragment, null, children);
|
||
|
}
|
||
|
|
||
|
//# sourceMappingURL=render-from-template-context.js.map
|