[![Build Status](https://travis-ci.org/philtoms/mithril.elements.svg?branch=master)](https://travis-ci.org/philtoms/mithril.elements)

# Mithril.Elements

A thin wrapper around the Mithril javascript framework that allows you to create composable custom element types:
```javascript
	m('greet', 'Bob')
```
becomes:
```html
	<div class="greet">
		<span>Hi</span><span>Bob!</span>
	</div>
```
For more informtion, please visit [Mithril.Elements Starter Kit](https://github.com/philtoms/mithril-starter-kit)
