next.js/test/e2e/app-dir/router-disable-smooth-scroll/fixtures/optimized/app/layout.tsx
layout.tsx16 lines256 B
import React from 'react'
import './global.css'

export default function RootLayout({
  children,
}: {
  children: React.ReactNode
}) {
  return (
    <html data-scroll-behavior="smooth">
      <head></head>
      <body>{children}</body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN