13 lines
312 B
TypeScript
13 lines
312 B
TypeScript
export default function Overlay() {
|
|
//todo: change window size based on how many streams are being shown
|
|
|
|
return (
|
|
<div className="flex flex-col bg-transparent">
|
|
<img
|
|
className="w w-fit"
|
|
src="https://miro.medium.com/max/1200/1*hONz6Wttkst4FUp_0hwQJQ.png"
|
|
/>
|
|
</div>
|
|
);
|
|
}
|