"use client"; import { useContext } from "react"; import { DanmuContext } from "./provider"; export default function SongCheck({ songs }: { songs: any[] }) { const { dispatch, ...state } = useContext(DanmuContext); return ( ); }