Spaces:
Build error
Build error
| 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; | |
| } | |