alpha
Login
or
Join now
flo-bit.dev
/
youtube-party-dj
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/flo-bit/youtube-party-dj. democratic youtube player, everyone can vote and add songs, uni project, made with uix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Update page.tsx
author
moritzbarv
committer
GitHub
date
2 years ago
(Jun 14, 2024, 3:56 PM +0200)
commit
74d04e59
74d04e59e4397e7006c41a7e830f2cec3e9a624e
parent
a51643a8
a51643a8e4fafeb5ece4dd101d4523b0e3c743c2
+3
1 changed file
Expand all
Collapse all
Unified
Split
common
page.tsx
+3
common/page.tsx
View file
Reviewed
···
4
4
import QRCodeOverlay from "./components/QRCodeOverlay.tsx";
5
5
import { sampleQueue } from "backend/data.tsx";
6
6
import { getPlayerSession } from "backend/sessions.ts";
7
7
+
import { nowPlaying } from "components/NowPlaying.tsx";
8
8
+
7
9
8
10
export default function App() {
9
11
const code = $$("XXXX");
···
32
34
})} />
33
35
</div>
34
36
<div class="px-4 py-4 border-t border-white/20 mx-0 overflow-y-scroll flex-grow">
37
37
+
<NowPlaying item={nowPlaying} />
35
38
<Queue items={queue} type={'player'} />
36
39
</div>
37
40
</div>