import React, {Component} from 'react';
import {Text, View} from 'react-native';
class HelloReactNative extends Component {
render() {
return (
If you like React, you'll also like React Native.
Instead of 'div' and 'span', you'll use native components
like 'View' and 'Text'.
);
}
}