const App: FC = () => {
const addItem = () => {
useState([...items, {id:1,name:'something'])
}
return<div>hello</div>
}
linter 在我的 App.tsx 上给了我错误。
warning Missing return type on function @typescript-eslint/explicit-function-return-type
我必须关闭显式函数返回类型,如何修复上面的代码?AddItem 不必返回任何东西。