Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
738 views
in Technique[技术] by (71.8m points)

reactjs - What is the difference between import * as react from 'react' vs import react from 'react'

I am new to React or the coding background in general. And I am not sure what is the difference between the statements

import * as react from 'react'

and

import react from 'react'

Thanks in advance!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

There are 3 types of most import commonly used imports.

Type 1

import * as A from 'abc';

This will import everything which is marked as export in abc. You can access them using below code.

A.Component 

Type 2

import {A} from 'abc';

This will import A from abc, containing something like this:

export const A = () => {};

Type 3

import A from 'abc';

This will import the default export from abc as A. The export can look like this:

const B = () => {}; // The name "B" is not exported, only the value.

export default B;  // at the end of component

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...