We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25c6917 commit 348fbd3Copy full SHA for 348fbd3
index.js
@@ -3,7 +3,7 @@
3
*/
4
5
import {AppRegistry} from 'react-native';
6
-import App from './App';
+import App from './src/App';
7
import {name as appName} from './app.json';
8
9
AppRegistry.registerComponent(appName, () => App);
src/App.js
@@ -0,0 +1,12 @@
1
+import React from "react";
2
+import { View } from 'react-native';
+
+function App() {
+ return (
+ <View>
+ </View>
+ )
10
+}
11
12
+export default App;
0 commit comments