react-native-airplay
Version:
AirPlay library for iOS
16 lines (12 loc) • 374 B
JavaScript
/**
* Created by guillermoanaya on 6/14/16.
*/
import {requireNativeComponent} from 'react-native';
import React, {Component, PropTypes} from 'react';
let AirPlayButton = requireNativeComponent('AirPlayButton', RAirPlayButton);
class RAirPlayButton extends Component {
render() {
return (<AirPlayButton {...this.props} />);
}
}
module.exports = RAirPlayButton