admin管理员组文章数量:1394099
I have a problem where I always get my function changePage
undefined or not a function error on the chilled component!
parent
export default function App() {
const [page, setPage] = React.useState("Dashboard");
const changePage = (page) => {
setPage(page);
}
return (
<>
<MainPage setPageHook={changePage}/>
</>
)
}
child
export default function App( {props}) {
return (
<p onClick={() => props.changePage("Dashboard") </p>
)
}
why I'm getting this error ?
I'm expecting to use the function on the child component but it's not passing!
本文标签: reactjsPassing a function as props from parent to child component using vite react jsStack Overflow
版权声明:本文标题:reactjs - Passing a function as props from parent to child component using vite react js - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744678653a2619264.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论