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