7 lines
164 B
TypeScript
7 lines
164 B
TypeScript
// The easiest solution to mock `next/router`: https://github.com/vercel/next.js/issues/7479
|
|
export const useRouter = () => {
|
|
return {
|
|
basePath: '.',
|
|
};
|
|
};
|