UNPKG

react-native-apple-healthkit

Version:

A React Native bridge module for interacting with Apple HealthKit data

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