import React from 'react';
import { useHistory } from 'react-router-dom';
const MyComponent = () => {
const history = useHistory();
const handleButtonClick = () => {
history.push('/order/reprint_inquiry_order');
};
return (
<div>
<h1>My Component</h1>
<button onClick={handleButtonClick}>Go to Reprint Inquiry Order</button>
</div>
);
};
export default MyComponent;
一个react路由钩子代码示例
最新推荐文章于 2025-12-12 22:04:31 发布
1107

被折叠的 条评论
为什么被折叠?



