next.js/test/e2e/app-dir/navigation-focus/app/scrollable-segment/page.tsx
page.tsx11 lines238 B
export default function ScrollableSegmentPage() {
  return (
    <div
      data-testid="segment-container"
      style={{ height: '50vh', overflow: 'scroll' }}
    >
      <div style={{ height: '60vh' }}>Scroll me</div>
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN