realm-js/examples/ReactExample/index.ios.js

11 lines
260 B
JavaScript
Raw Normal View History

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