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 (