import React, { PropTypes } from 'react' const assetType = PropTypes.string const HomePage = React.createClass({ propTypes: { styles: PropTypes.arrayOf(assetType), scripts: PropTypes.arrayOf(assetType) }, getDefaultProps() { return { styles: [], scripts: [] } }, render() { const { styles, scripts } = this.props return ( npmcdn {styles.map(style => )}
{scripts.map(script =>