summaryrefslogtreecommitdiff
path: root/index.android.js
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2016-11-26 22:35:40 -0700
committermo khan <mo@mokhan.ca>2016-11-26 22:35:40 -0700
commit86c5b269412bf2852797efe2eebcff8820fa7cac (patch)
treeb7d099dd760af3dce46da3839b28ff081cd7d3b8 /index.android.js
parent7c8abbb38daab521d551fc2fd2b740944806204e (diff)
add react-redux example.
Diffstat (limited to 'index.android.js')
-rw-r--r--index.android.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.android.js b/index.android.js
index b280777..8e544a2 100644
--- a/index.android.js
+++ b/index.android.js
@@ -1,5 +1,5 @@
import React, { Component } from 'react';
import { AppRegistry } from 'react-native';
-import ApplicationShell from './app/components/application-shell'
+import App from './app/containers/app'
-AppRegistry.registerComponent('AwesomeProject', () => ApplicationShell);
+AppRegistry.registerComponent('AwesomeProject', () => App);