realm-js/examples/ReactExample/main.js

11 lines
254 B
JavaScript
Raw Normal View History

/* 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);