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

11 lines
260 B
JavaScript
Raw Normal View History

2016-01-13 22:29:41 +00:00
/* Copyright 2015 Realm Inc - All Rights Reserved
* Proprietary and Confidential
*/
'use strict';
const React = require('react-native');
const TodoApp = require('./components/todo-app');
React.AppRegistry.registerComponent('ReactExample', () => TodoApp);