📅  最后修改于: 2022-03-11 15:01:57.636000             🧑  作者: Mango
function Button({ path, text }) {
const history = useHistory();
function handle(){
history.push(path); // This should work now
}
return(
);
}