视频课程列表

This commit is contained in:
禺狨
2023-03-02 15:52:54 +08:00
parent bb7807f87a
commit 19e68da26f
8 changed files with 207 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
import React from "react";
import { RouteObject } from "react-router-dom";
import { Login, HomePage, Dashboard, ErrorPage } from "../pages";
import { Login, HomePage, Dashboard, ErrorPage, VodListPage } from "../pages";
const routes: RouteObject[] = [
{
@@ -11,6 +11,10 @@ const routes: RouteObject[] = [
path: "/",
element: <Dashboard />,
},
{
path: "/vod",
element: <VodListPage />,
},
],
},
{