11 lines
254 B
JavaScript
11 lines
254 B
JavaScript
|
/* Copyright 2016 Realm Inc - All Rights Reserved
|
||
|
* Proprietary and Confidential
|
||
|
*/
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
import { AppRegistry } from 'react-native';
|
||
|
import TodoApp from './components/todo-app';
|
||
|
|
||
|
AppRegistry.registerComponent('ReactExample', () => TodoApp);
|