Ramda with Mithril

by ramnathv

HTML

<script src="//cdnjs.cloudflare.com/ajax/libs/ramda/0.18.0/ramda.min.js"></script>

CoffeeScript

_list = R.map (x) -> m 'li', x

List =
  view: (c, props) ->
    {items} = props
    m 'ul', _list(items)
    
myList = m.component(List, {items: [1, 2, 3]})
m.mount(document.body, myList)