rsnext/test/integration/auto-export/pages/[post]/[cmnt].js

24 lines
574 B
JavaScript
Raw Normal View History

import { useRouter } from 'next/router'
if (typeof window !== 'undefined') {
window.caughtWarns = []
const origWarn = window.console.warn
const origError = window.console.error
2020-05-18 21:24:37 +02:00
window.console.warn = function (...args) {
window.caughtWarns.push(1)
origWarn(...args)
}
2020-05-18 21:24:37 +02:00
window.console.error = function (...args) {
window.caughtWarns.push(1)
origError(...args)
}
window.pathnames = []
}
export default () => {
if (typeof window !== 'undefined') {
window.pathnames.push(window.location.pathname)
}
return <p>{useRouter().asPath}</p>
}