UNPKG

media_player_wrapper

Version:
15 lines (13 loc) 309 B
import React, { Component } from "react"; import { View } from "react-native"; import Streaming from "./Streaming"; export default class Main extends Component { render() { // render the streaming component return ( <View style={{ flex: 1 }}> <Streaming /> </View> ); } }