mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-15 01:34:57 +01:00
25 lines
404 B
JavaScript
25 lines
404 B
JavaScript
|
const Router = require('next/router')
|
||
|
|
||
|
Router.router = {
|
||
|
push: () => null,
|
||
|
prefetch: () => null,
|
||
|
asPath: '/hello',
|
||
|
events: {
|
||
|
on: () => null,
|
||
|
off: () => null
|
||
|
},
|
||
|
useRouter: () => {
|
||
|
return {
|
||
|
push: () => null,
|
||
|
prefetch: () => null,
|
||
|
asPath: '/hello',
|
||
|
events: {
|
||
|
on: () => null,
|
||
|
off: () => null
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = Router.router
|