Slide 1

Slide 1 text

No content

Slide 2

Slide 2 text

No content

Slide 3

Slide 3 text

No content

Slide 4

Slide 4 text

No content

Slide 5

Slide 5 text

JavaScript code No Errors Show Details Preview State value is: 42 import React from 'react'; import ReactDOM from 'react-dom'; const Counter = ({ value }) => (

State value is: {value}

); class App extends React.Component { constructor(props) { super(props); this.state = { value: 42 }; } handleOnClick = () => { this.setState(prevState => ({ value: prevState.value + 1 })); } d () { 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18

Slide 6

Slide 6 text

Slide 7

Slide 7 text

No content

Slide 8

Slide 8 text

No content

Slide 9

Slide 9 text

➡ ➡

Slide 10

Slide 10 text

JavaScript code No Errors Show Details Preview import React from 'react'; import { AppRegistry, Button, Text, View } from 'react-native'; const Counter = ({ value }) => ( State value is: {value} ); class App extends React.Component { constructor(props) { super(props); this.state = { value: 42 }; } handleOnClick = () => { this.setState(prevState => ({ value: prevState.value + 1 })); } d () { 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18

Slide 11

Slide 11 text

JavaScript code No Errors Show Details Preview import React from 'react'; import { AppRegistry, Button, Text, View } from 'react-native'; const Counter = ({ value }) => ( State value is: {value} ); class App extends React.Component { constructor(props) { super(props); this.state = { value: 42 }; } handleOnClick = () => { this.setState(prevState => ({ value: prevState.value + 1 })); } d () { 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18

Slide 12

Slide 12 text

JavaScript code No Errors Show Details Preview import React from 'react'; import { AppRegistry, View } from 'react-native'; class App extends React.Component { render() { return ( // flexDirection: 'row' | 'column' ); } } AppRegistry.registerComponent('App', () => App); 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18

Slide 13

Slide 13 text

No content

Slide 14

Slide 14 text

No content

Slide 15

Slide 15 text

No content

Slide 16

Slide 16 text

No content

Slide 17

Slide 17 text

No content

Slide 18

Slide 18 text

No content

Slide 19

Slide 19 text

No content

Slide 20

Slide 20 text

No content

Slide 21

Slide 21 text

No content

Slide 22

Slide 22 text

No content

Slide 23

Slide 23 text

import StyleSheet from 'app/PaulingStyleSheet'; export default StyleSheet.create({ Header: { paddingTop: 0, android: { height: 56, }, ios: { height: 44, }, }, // ... });

Slide 24

Slide 24 text

import PosterViewer from 'app/PosterViewer'; src/PosterViewer ├── index.android.js ├── index.android.test.js ├── index.ios.js └── index.ios.test.js

Slide 25

Slide 25 text

❤❤❤

Slide 26

Slide 26 text

No content

Slide 27

Slide 27 text

No content