/** * 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 (
{this.props.children}
); } } App.propTypes = { children: PropTypes.node, };