Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any difference between React.Component and Component?

I have seen two ways of accessing Component:

import React from 'react';

class Foo extends React.Component {
    ...
}

and

import React, { Component } from 'react';

class Foo extends Component {
    ...
}

Is there any difference between the two (maybe in performance, for example)?

like image 436
JoeTidee Avatar asked Oct 29 '25 08:10

JoeTidee


2 Answers

Short answer: no.

Looking at it from the other side might make understanding easier.

If you imagine the react module itself - it might look something like this.

export const Component = () => {};    // the component class/function

const React = { Component: Component };  // the main react object

export default React;

Notice the use of export.

The default export is React, so it is accessed (or imported) in another module like this:

import React from 'react';

Component is a named export: Component, and so is accessed in another module via:

import { Component } from 'react';

But in this case Component is also attached to the React object. So you could use the imports in any of the following ways:

import React, { Component } from 'react';

class MyComp extends React.Component {}
class MyOtherComp extends Component {}

A few other points worth mentioning:

  • There can only be one default export per module, but you can export many variables.
  • The default export can be named anything when you import it. For example import Cat from 'react';.
  • You can rename named imports by doing the following: import { Component as Cat } from 'react';
  • This behavior isn't specific to React, but is part of the ES6 module system.
like image 98
David Avatar answered Oct 31 '25 01:10

David


In first example you got the whole exports through import React, and you call Component through react import. In second example you import Component separately from React. That's why you don't need to write React.Component. It's the same, but in different ways of import.

like image 29
Sergey Avatar answered Oct 30 '25 23:10

Sergey