next.js/test/e2e/app-dir/actions/components/DefaultLayout.tsx
DefaultLayout.tsx15 lines202 B
import React from 'react'

export default function DefaultLayout({
  children,
}: {
  children: React.ReactNode
}) {
  return (
    <html>
      <head />
      <body>{children}</body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN