mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2026-01-05 22:54:23 +01:00
9 lines
270 B
TypeScript
9 lines
270 B
TypeScript
"use client";
|
|
|
|
import type { FC, PropsWithChildren } from "react";
|
|
import { ServerEventsProvider } from "./ServerEventsProvider";
|
|
|
|
export const SSEProvider: FC<PropsWithChildren> = ({ children }) => {
|
|
return <ServerEventsProvider>{children}</ServerEventsProvider>;
|
|
};
|