Closed2

'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.

Hide(ひで)Hide(ひで)
src/app/layout.tsx
export default function RootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <html lang="ja">
      <body>{children}</body>
    </html>
  );
}

で以下の型エラー。

'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.ts(2686)
(property) JSX.IntrinsicElements.html: DetailedHTMLProps<HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>
このスクラップは2023/10/10にクローズされました