The right way to import React

Viewed 63

What is the right way to import React import React from 'react' or import react from 'react' as VSCode is giving the second one as Auto-suggestion .

3 Answers

Both work, it does not matter because you are getting the default export either way.

There's no difference between the two examples you shared other than what you named the default export when you imported it. Either will work and are syntactically correct.

The standard convention is to Titlecase React when importing though:

import React from 'react';
Related