Phyks (Lucas Verney)
fffe9c4cd3
Major code review, cleaning the code and adding a lot of comments. Also implements a separate store to keep entities with a reference count and garbage collection. This closes #15. Known issues at the moment are: * Webplayer is no longer working, it has to be refactored. * AlbumPage is to be implemented.
21 lines
401 B
JavaScript
21 lines
401 B
JavaScript
/**
|
|
* Main container at the top of our application components tree.
|
|
*
|
|
* Just a div wrapper around children for now.
|
|
*/
|
|
import React, { Component, PropTypes } from "react";
|
|
|
|
export default class App extends Component {
|
|
render () {
|
|
return (
|
|
<div>
|
|
{this.props.children}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
App.propTypes = {
|
|
children: PropTypes.node,
|
|
};
|