Files
sound-analyze/services/frontend/src/app/providers/withLiveStream.tsx

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;
}