Skip to content

Instantly share code, notes, and snippets.

View gonzalolarrosa's full-sized avatar

gonzalolarrosa

View GitHub Profile
import React, { Component } from 'react';
import './main-component.css';
import ChildComponent from './ChildComponent';
export default class MainComponent extends Component {
constructor (props) {
super(props);
this.label = “I’m your father”;
};
import { getUserData } from '../Service';
const USER_ID = 1;
const USER_INFO = {
name: ‘Bruce Wayne’,
age: 32,
gender: ‘male’,
mail: ‘batman@dccomics.com’
}