[WIP] Mobile application development with React-Native
April 1st, 2020 ~ Est. 1 min read
Full Post - Coming Soon...
React-Native is a cross platform platform for mobile application development.
import React from 'react';
import { Text, View } from 'react-native';
export default function HelloWorldApp() {
return (
<View style={{
flex: 1,
justifyContent: 'center',
alignItems: 'center'
}}>
<Text>Hello, world!</Text>
</View>
);
}
ReactNative is a javascript framework for mobile app development!
---------- devJournal ----------