Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Hello World 2017 - React Native

Hello World 2017 - React Native

Título: React Native
Autor: Francisco Sales
Contacto: https://github.com/franciscofsales

More Decks by Hello World Tech Conference

Other Decks in Programming

Transcript

  1. REACT NATIVE NATIVE UI PLATFORM JAVASCRIPT CORE VM SHARE CODEBASE

    BETWEEN ANDROID, IOS, AND TO SOME EXTENT WITH THE WEB
  2. import React from 'react'; class HelloWorld extends React.Component { render()

    { return ( <div> <span> Hello World </span> </div> ); } }
  3. import React from 'react'; import {View, Text} from 'react-native'; class

    HelloWorld extends React.Component { render() { return ( <View> <Text> Hello World </Text> </View> ); } }