import React, {PropTypes} from "react";
import {Card, CardHeader, CardText} from "material-ui/Card";

const WebpackAssets = (props) => (
      <Card initiallyExpanded={true}>
        <CardHeader showExpandableButton={true} actAsExpander={true} subtitle="Webpack Assets"/>
          <CardText expandable={true}>
          	<h1>test</h1>
          </CardText>
      </Card>
    );
WebpackAssets.propTypes = {
  assets: PropTypes.array
};

export default WebpackAssets;
