mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-11 06:46:03 +00:00
11 lines
260 B
JavaScript
11 lines
260 B
JavaScript
/* 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);
|