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