So I am having kind off a set back understanding the output from Import/Export Statement.
So suppose, if I do something like this
import React, { Component } from 'react';
import Cperson from '../components/person/person.js';
console.log(Cperson)
I get this as an output in console.log
Cpersons() {
_classCallCheck(this, Cpersons);
return _possibleConstructorReturn(this, (Cpersons.__proto__ || Object.getPrototypeOf(Cpersons)).apply(this, arguments));
}
Can someone explain me what is console.log telling?
Thanks in advance