Spaces:
Build error
Build error
File size: 315 Bytes
b59aa07 |
1 2 3 4 5 6 7 8 9 10 11 |
import React from "react";
import { useHandleWSEvents } from "../hooks/use-handle-ws-events";
import { useHandleRuntimeActive } from "../hooks/use-handle-runtime-active";
export function EventHandler({ children }: React.PropsWithChildren) {
useHandleWSEvents();
useHandleRuntimeActive();
return children;
}
|