mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-14 18:35:09 +01:00
15 lines
431 B
TypeScript
15 lines
431 B
TypeScript
import { useContext } from "react";
|
|
import { VideoPlayerContext } from "../VideoContext";
|
|
|
|
export function QualityDisplayControl() {
|
|
const videoPlayerContext = useContext(VideoPlayerContext);
|
|
|
|
return (
|
|
<div className="rounded-md bg-denim-300 py-1 px-2 transition-colors">
|
|
<p className="text-center text-xs font-bold text-slate-300 transition-colors">
|
|
{videoPlayerContext.quality}
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|