Intro to JSX
Basics
const element = <div>Hello World</div>;import { Text } from 'react-native';
const element = <Text>Hello World</Text>;import { Text } from 'react-native';
const name = "Justin";
const element = <Text>Hello {name}</Text>;import { Text, View } from 'react-native';
const name = "Justin";
const element = (
<View>
<Text>Hello {name}</Text>
<Text>Nice to meet you!</Text>
<View>
);Components
Last updated