define [
  'react'
], (React) ->

  ArticleComponent = React.createClass

    render: ->
      { article, key } = @props

      `<li>
        <small>{ key }</small>
        <a className='article-link' href={ article.get('url') } target='_blank'>
          { article.get('title') }
        </a>
        <small>
          <a className='postedBy' href={ article.get('userProfile') } target='_blank'>
            [{ article.get('postedBy') }]
          </a>
        </small>
      </li>`

