import { getToken } from "@/lib/actions/token"; import Controls from "./controls"; import Danmu from "./danmu"; import { listLives } from "@/lib/actions/live"; import { listSongs } from "../songs/actions"; import DanmuProvider from "./provider"; import LiveCheck from "./live-check"; import SongCheck from "./song-check"; import CurrentInput from "./current-input"; export default async function Page() { const token = await getToken(); const lives = await listLives(); const songs = await listSongs(); return (
直播间列表
收藏的歌曲
); }