Thoughout our TSX/React web application, we use two different import style for the react
module:
import * as React from "react";
and
import React from "react"
I am not aware of any functional difference between the two. Both work just fine. Is there any reason to prefer one notion over the other?