11 lines
260 B
JavaScript
Raw Normal View History

2015-10-27 16:19:30 -07:00
/* Copyright 2015 Realm Inc - All Rights Reserved
* Proprietary and Confidential
*/
2015-08-13 09:12:48 -07:00
'use strict';
2015-10-07 16:20:05 -07:00
const React = require('react-native');
const TodoApp = require('./components/todo-app');
2015-08-13 09:12:48 -07:00
2015-10-07 16:20:05 -07:00
React.AppRegistry.registerComponent('ReactExample', () => TodoApp);