From 6a4838655bb4f9442046a9cfd59351c6ca0ce881 Mon Sep 17 00:00:00 2001 From: Arya Emami Date: Tue, 27 Aug 2024 09:30:03 -0500 Subject: [PATCH] Convert `default` import of React to a wildcard import --- src/utils/react-is.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/react-is.ts b/src/utils/react-is.ts index e6ada8ed3..8d5b1d88d 100644 --- a/src/utils/react-is.ts +++ b/src/utils/react-is.ts @@ -1,5 +1,5 @@ import type { ElementType, MemoExoticComponent, ReactElement } from 'react' -import React from 'react' +import * as React from 'react' // Directly ported from: // https://unpkg.com/browse/react-is@19.0.0-beta-04b058868c-20240508/cjs/react-is.production.js