UNPKG

react-native-apple-healthkit

Version:

A React Native bridge module for interacting with Apple HealthKit data

28 lines (22 loc) 426 B
/** * Sample React Native App * https://github.com/facebook/react-native * @flow */ import React, { Component } from 'react'; import { AppRegistry, StyleSheet, Text, View } from 'react-native'; require('RCTNativeAppEventEmitter') import App from './app/app'; class StepsDemo extends Component { render() { return ( <App /> ); } } AppRegistry.registerComponent('StepsDemo', () => StepsDemo);