diff --git a/src/pages/home/list.page.tsx b/src/pages/home/list.page.tsx index 277a085..1663504 100644 --- a/src/pages/home/list.page.tsx +++ b/src/pages/home/list.page.tsx @@ -2,6 +2,8 @@ import { Column } from '@antv/g2plot'; import { Avatar, Button, Divider, Tabs, TabsProps } from 'antd'; import { useEffect, useRef } from 'react'; +import Card from '@/components/card'; + const data = [ { name: '您', @@ -95,7 +97,7 @@ const data = [ }, ]; -export default () => { +export default function Home() { const ref = useRef(null); // 图表。保证首次加载,且只加载一次 useEffect(() => { @@ -229,13 +231,17 @@ export default () => {
-
近八天系统访问记录
-
+ +
近八天系统访问记录
+
+
- + + +
); -}; +}