Files
2022-09-07 00:13:55 +05:30

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: '.',
};
};