I hereby claim:
- I am juankuquintana on github.
- I am juankuquintana (https://keybase.io/juankuquintana) on keybase.
- I have a public key ASAfbRJZKN6RIzkmJ7S24MRFE69Y-3I56Un5ybOTSg72Ygo
To claim this, I am signing this object:
| # brew installation: https://brew.sh/index_es | |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" | |
| # switch zsh (only for previous versions than catalina) | |
| chsh -s /bin/zsh | |
| # install oh my z: https://ohmyz.sh/#install | |
| sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
| # install nvm: https://gist.github.com/nijicha/e5615548181676873118df79953cb709 |
I hereby claim:
To claim this, I am signing this object:
| module.exports = { | |
| entry: [ | |
| 'src/index.js' | |
| ], | |
| ..., | |
| resolve: { | |
| extensions: ['.js', '.json', '.jsx', '.web.js', ''] | |
| } | |
| }; |
| module.exports = { | |
| entry: [ | |
| 'src/index.js' | |
| ], | |
| ..., | |
| resolve: { | |
| extensions: ['.js', '.json', '.jsx', '.tv.js', ''] | |
| } | |
| }; |
| export { default } from './Header'; |
| import React, { Component } from 'react'; | |
| import Header from './Header'; | |
| class Index extends Component { | |
| render() { | |
| return ( | |
| <Header /> | |
| ); | |
| } | |
| } |
| { | |
| "env": { | |
| "production": { | |
| "presets": [ | |
| "react", | |
| "es2015" | |
| ], | |
| "plugins": ["transform-class-properties"] | |
| } | |
| } |
| import React from 'react'; | |
| import { Link } from 'react-router'; | |
| export default React.createClass({ | |
| render() { | |
| return ( | |
| <div> | |
| <h1>Samsung TV + React + React Router Tutorial</h1> | |
| <ul role="nav"> | |
| <li><Link to="/samsung">About Samsung</Link></li> |
| import React from 'react' | |
| export default React.createClass({ | |
| render() { | |
| return ( | |
| <div> | |
| About Samsung | |
| <br/>Samsung Group is a South Korean multinational conglomerate headquartered in Samsung Town, Seoul | |
| </div> | |
| ) |
| import React from 'react' | |
| export default React.createClass({ | |
| render() { | |
| return ( | |
| <div> | |
| About React | |
| <br/>React is a JavaScript library for building user interfaces | |
| </div> | |
| ) |