修复声明但是没有使用的东西

This commit is contained in:
York 2025-02-20 13:26:43 +08:00
parent a18c107715
commit 690e48cbc5

View File

@ -81,7 +81,7 @@ const theme = createTheme({
function App() {
const [tabValue, setTabValue] = useState(0);
const handleTabChange = (event: React.SyntheticEvent, newValue: number) => {
const handleTabChange = (_event: React.SyntheticEvent, newValue: number) => {
setTabValue(newValue);
};