mirror of
https://github.com/p-stream/p-stream.git
synced 2026-03-23 17:07:41 +00:00
16 lines
309 B
TypeScript
16 lines
309 B
TypeScript
import { ReactNode } from "react";
|
|
|
|
import { VideoContainer } from "@/components/player/internals/VideoContainer";
|
|
|
|
export interface PlayerProps {
|
|
children?: ReactNode;
|
|
}
|
|
|
|
export function Container(props: PlayerProps) {
|
|
return (
|
|
<div>
|
|
<VideoContainer />
|
|
{props.children}
|
|
</div>
|
|
);
|
|
}
|