Skip to content

Latest commit

 

History

History
23 lines (22 loc) · 301 Bytes

21_render_&_jsx.md

File metadata and controls

23 lines (22 loc) · 301 Bytes

2.1 Render & JSX

..
...
render() {
  const txt = 'Hello';
  function say(name){
    return 'I am '+name;
  }
  return (
    <View>
      <Text>This is a title!</Text>
      <Text>{txt}</Text>
      <View>
        <Text>{say('React')}</Text>
      </View>
    </View>
  );
}
..
...