Why the problems introduced by React in typescript

Why write

import * as React from "react"

instead of writing

directly
import React from "react"
In

tsconfig.json, add "allowSyntheticDefaultImports": true to compilerOptions.

Menu