index.ios.js 410 Bytes
Newer Older
renato's avatar
renato committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/**
 * Sample React Native App
 * https://github.com/facebook/react-native
 * @flow
 */

import React, { Component } from 'react';
import {
  AppRegistry,
  StyleSheet,
  Text,
  View
} from 'react-native';

renato's avatar
renato committed
15 16
import App from "./app/App";

renato's avatar
renato committed
17 18
export default class SimpleFcmClient extends Component {
  render() {
renato's avatar
renato committed
19
    return (<App />);
renato's avatar
renato committed
20 21 22 23
  }
}

AppRegistry.registerComponent('SimpleFcmClient', () => SimpleFcmClient);