【发布时间】:2020-03-11 12:33:01
【问题描述】:
使用带有 React Hooks 的 Material Table 我的愿望是重定向 onClick。目前 onClick 没有响应。
材质表组件
actions={[
{
onClick: (items) => {
/*
I want to re-direct to another route("/editperson") +
component(EditPerson.tsx) and send it props from this component
*/
}
}
]}
NavigateToEditPerson.tsx
function NavigateToEditPerson() {
return (
<>
<NavLink to={{ pathname: "/editPerson" }} />
</>
);
}
【问题讨论】:
标签: reactjs react-router react-router-dom