index.ios.js 410 Bytes
Newer Older
Libin Lu's avatar
Libin Lu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/**
 * Sample React Native App
 * https://github.com/facebook/react-native
 * @flow
 */

import React, { Component } from 'react';

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

import App from "./app/App";

export default class SimpleFcmClient extends Component {
  render() {
    return (<App />);
  }
}

Libin Lu's avatar
Libin Lu committed
24
AppRegistry.registerComponent('SimpleFcmClient', () => SimpleFcmClient);