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;