新闻来源:
diff --git a/src/pages/news/index.tsx b/src/pages/news/index.tsx
index 22ba0b1..3dc07f8 100644
--- a/src/pages/news/index.tsx
+++ b/src/pages/news/index.tsx
@@ -1,15 +1,23 @@
import {useState} from "react";
-import {Checkbox, Modal, Pagination} from "antd";
+import {Button, Checkbox, Modal, Pagination, Space} from "antd";
import {Card} from "@/components/card";
import SearchPanel from "@/pages/news/components/search-panel.tsx";
import styles from './style.module.scss'
+
+function onVideoCreateClick(){}
+function onVideoDownloadClick(){}
+
export default function NewsIndex() {
const [list,] = useState([1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
const [checkedId, setCheckedId] = useState
([])
const [activeNews, setActiveNews] = useState()
+ const [state, setState] = useState<{
+ checkAll?: boolean;
+ }>({})
+
return (
@@ -36,11 +44,28 @@ export default function NewsIndex() {
+