next.js/test/production/react-profiling-mode/app/client/page.js
page.js18 lines336 B
'use client'

import React from 'react'

export default function Page() {
  return (
    <React.Profiler
      id="hello-app-client"
      onRender={(...res) => {
        window.profileResults = window.profileResults || []
        window.profileResults.push(res)
      }}
    >
      <p>hello app client</p>
    </React.Profiler>
  )
}
Quest for Codev2.0.0
/
SIGN IN