mirror of
https://github.com/movie-web/movie-web.git
synced 2025-01-06 21:58:17 +01:00
10 lines
166 B
TypeScript
10 lines
166 B
TypeScript
|
import { Player } from "@/components/player";
|
||
|
|
||
|
export function PlayerView() {
|
||
|
return (
|
||
|
<Player.Container>
|
||
|
<Player.Pause />
|
||
|
</Player.Container>
|
||
|
);
|
||
|
}
|