9 lines
150 B
React
9 lines
150 B
React
|
|
import { useRouter } from "next/navigation";
|
||
|
|
|
||
|
|
const GoBack = () => {
|
||
|
|
// console.log(history);
|
||
|
|
return history.back();
|
||
|
|
};
|
||
|
|
|
||
|
|
export default GoBack;
|