Files
teach_sys_Demo/src/pages/LivePage/index.jsx

19 lines
441 B
React
Raw Normal View History

2025-08-17 00:49:04 +08:00
import CoursesVideoPlayer from "@/components/CoursesVideoPlayer";
import CourseList from "@/components/CourseList";
2025-08-15 16:16:41 +08:00
import StageProgress from "@/components/StageProgress";
import "./index.css";
const LivePage = () => {
return (
2025-08-17 00:49:04 +08:00
<div className="live-page">
<StageProgress />
<div className="live-page-content">
<CoursesVideoPlayer />
<CourseList />
2025-08-15 16:16:41 +08:00
</div>
</div>
);
};
export default LivePage;