Created
January 13, 2016 18:41
-
-
Save impronunciable/efd1d7c030e50b71d5e6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var Hola = React.createClass({ | |
render: function() { | |
return ( | |
<h1>Hola {this.props.name}!</h1> | |
) | |
} | |
}) | |
ReactDOM.render( | |
<Hola name="Manu" />, | |
document.getElementById('root') | |
); |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>El sitio de Manu</title> | |
<link rel="stylesheet" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" /> | |
<link rel="stylesheet" src="main.css" /> | |
</head> | |
<body> | |
<div id="root"></div> | |
<script src="https://fb.me/react-0.14.6.min.js"></script> | |
<script src="https://fb.me/react-dom-0.14.6.min.js"></script> | |
<script src="https://fb.me/JSXTransformer-0.13.3.js"></script> | |
<script src="app.js" type="text/jsx"></script> | |
</body> | |
</html> |
This file contains hidden or 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
/* Acá van los estilos, gato */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment