This commit is contained in:
none
2023-03-23 16:35:20 +08:00
parent e7421f67cc
commit 9f90bd75d3
22 changed files with 190 additions and 157 deletions

View File

@@ -1,7 +1,7 @@
import { useEffect, useState } from "react";
import { Button, Modal, Table, message, Space } from "antd";
import { Modal, Table, message, Space } from "antd";
import { resource } from "../../../api";
import styles from "./index.module.less";
// import styles from "./index.module.less";
import { ExclamationCircleFilled } from "@ant-design/icons";
import type { ColumnsType } from "antd/es/table";
import { dateFormat } from "../../../utils/index";
@@ -18,7 +18,7 @@ interface DataType {
disk: string;
}
export const ResourceVideosPage = () => {
const ResourceVideosPage = () => {
const [videoList, setVideoList] = useState<any>([]);
const [videosExtra, setVideoExtra] = useState<any>([]);
const [adminUsers, setAdminUsers] = useState<any>({});
@@ -203,3 +203,5 @@ export const ResourceVideosPage = () => {
</>
);
};
export default ResourceVideosPage;