Intro
I remember using React at Agile Solutions, back in Brazil and this “JavaScript library for building user interfaces”, aka framework, was very much used and it was quite good SPECIALLY for small stuff.
One of the best courses I have ever tried in Udemy is [2], this guy is just great!
React
Example from wikipedia – yes, hate me.
1 import React, { Component } from 'react';
2 import { AppRegistry, Text } from 'react-native';
3
4 export default class HelloWorldApp extends Component {
5 render() {
6 return (
7 <Text>Hello world!</Text>
8 );
9 }
10 }
11
12 // Skip this line if using Create React Native App
13 AppRegistry.registerComponent('HelloWorld', () => HelloWorldApp);
14
15 // The ReactJS code can also be imported into another component with the following code:
16
17 import HelloWorldApp from './HelloWorldApp';