Phyks (Lucas Verney)
d8a7d4f66a
Full rework of webplayer. Webplayer is back to its previous working state, and ready for further improvements.
17 lines
307 B
JavaScript
17 lines
307 B
JavaScript
// NPM imports
|
|
import React, { Component } from "react";
|
|
|
|
|
|
/**
|
|
* Simple layout, meaning just enclosing children in a div.
|
|
*/
|
|
export default class SimpleLayout extends Component {
|
|
render() {
|
|
return (
|
|
<div>
|
|
{this.props.children}
|
|
</div>
|
|
);
|
|
}
|
|
}
|