13 lines
244 B
JavaScript
Executable File
13 lines
244 B
JavaScript
Executable File
import React, { Component } from 'react';
|
|
|
|
export default class Audio extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
props.init.call(this);
|
|
}
|
|
|
|
render() {
|
|
return (<audio id="remote-media" autoPlay="autoplay" />);
|
|
}
|
|
}
|