mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
7131d706ae
A regression from #81085 @huozhi The problem is that `openDevToolsIndicatorPopover` doesn't tell anymore whether the popup menu is open, but if the panel is open, but the "Try Turbopack" text is in the popup menu (only in the old UI).
13 lines
211 B
JavaScript
13 lines
211 B
JavaScript
import React from 'react'
|
|
|
|
// Create a runtime error.
|
|
if ('window' in global) {
|
|
throw Error('example runtime error')
|
|
}
|
|
|
|
const Page = () => {
|
|
return <div>client-react-dev-overlay</div>
|
|
}
|
|
|
|
export default Page
|