Created
December 3, 2015 03:07
-
-
Save danhanfry/db59d02cc461ac4d073f to your computer and use it in GitHub Desktop.
React Conceptos Basicos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Conceptos Basicos react js | |
`` | |
import React from 'react' | |
import Link from './link' // Importar Componente | |
export class App extends React.Component { | |
render() { | |
return ( | |
<div>Hola que tal que calidad " {this.props.title} " </div> | |
); | |
} | |
} | |
React.render(<App title="primera app" />, document.body); | |
`` | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment