web-backset.cn/apps/web-main/src/view/Course/index.tsx

14 lines
251 B
TypeScript
Raw Normal View History

2023-02-27 15:41:19 +08:00
import "./index.less";
import Player from "../../components/Player";
import { useMount } from "../../hook";
export default function Index() {
useMount(() => {});
return (
<div className="container course">
<Player />
</div>
);
}