feat(frontend): add basic frontend

This commit is contained in:
2025-12-26 20:14:30 +03:00
parent 262c42c1b3
commit 707a474ef3
38 changed files with 5230 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import type { PropsWithChildren } from "react";
export function WithLiveStream({ children }: PropsWithChildren) {
// placeholder for future providers
// theme, router, query-client, etc.
return children;
}