8 lines
213 B
TypeScript
8 lines
213 B
TypeScript
import type { PropsWithChildren } from "react";
|
|
|
|
export function WithLiveStream({ children }: PropsWithChildren) {
|
|
// placeholder for future providers
|
|
// theme, router, query-client, etc.
|
|
return children;
|
|
}
|