feat: model usage

This commit is contained in:
jialin
2025-06-24 16:54:03 +08:00
parent 645801fe86
commit 34af730934
22 changed files with 750 additions and 385 deletions
@@ -1,6 +1,5 @@
import CardWrapper from '@/components/card-wrapper';
import HBar from '@/components/echarts/h-bar';
import { useIntl } from '@umijs/max';
import React from 'react';
interface TopUserProps {
@@ -9,7 +8,6 @@ interface TopUserProps {
}
const TopUser: React.FC<TopUserProps> = (props) => {
const { userData, topUserList } = props;
const intl = useIntl();
return (
<CardWrapper>
@@ -18,4 +16,4 @@ const TopUser: React.FC<TopUserProps> = (props) => {
);
};
export default React.memo(TopUser);
export default TopUser;