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

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>

VSCodeを再起動したら解決しました
このスクラップは2023/10/10にクローズされました