From 23349dc896371a840f809bf5e7145d0a22f45285 Mon Sep 17 00:00:00 2001 From: Samarth Agarwal Date: Sat, 16 Feb 2019 17:57:36 -0500 Subject: Created a basic Hello World template as a starting point for all of our React Native work. --- App.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 App.js diff --git a/App.js b/App.js new file mode 100644 index 0000000..80a780e --- /dev/null +++ b/App.js @@ -0,0 +1,12 @@ +import React, { Component } from 'react'; +import { Text, View } from 'react-native'; + +export default class HelloWorldApp extends Component { + render() { + return ( + + Hello world! + + ); + } +} -- cgit v1.2.3