From 829998568f4e8a44971a9fe7e46a76ec9316cc81 Mon Sep 17 00:00:00 2001 From: Kumar Damani Date: Mon, 18 Feb 2019 16:09:52 -0700 Subject: fixed folder structure --- mobile/App.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 mobile/App.js (limited to 'mobile/App.js') diff --git a/mobile/App.js b/mobile/App.js new file mode 100644 index 0000000..7271bc2 --- /dev/null +++ b/mobile/App.js @@ -0,0 +1,17 @@ +import React, { Component } from 'react'; +import { Text, View } from 'react-native'; + +export default class HelloWorldApp extends Component { + //Every component needs a render() function + render() { + return ( + // acts like the way
does in JavaScript + //style={...} stores properties about where you want the component to be placed + //and how you want it to look. It's similar to adding CSS styles to HTML elements + //when creating web pages + + Hello world! + + ); + } +} -- cgit v1.2.3