mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
0dfb539d2d
* swap docs * fix build error --------- Co-authored-by: Fuma Nama <fuma-nama@noreply.com>
11 lines
297 B
TypeScript
11 lines
297 B
TypeScript
"use client"
|
|
import React from "react";
|
|
import { TailoredContentProvider } from "@/lib/hooks/use-tailored-content";
|
|
|
|
export function DynamicContentWrapper({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<TailoredContentProvider>
|
|
{children}
|
|
</TailoredContentProvider>
|
|
);
|
|
} |