Skip to content

Instantly share code, notes, and snippets.

@danhanfry
Created December 3, 2015 03:07
Show Gist options
  • Save danhanfry/db59d02cc461ac4d073f to your computer and use it in GitHub Desktop.
Save danhanfry/db59d02cc461ac4d073f to your computer and use it in GitHub Desktop.
React Conceptos Basicos
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