Commit 953a4679 authored by James Laver's avatar James Laver

Add R.DOM.Raw.span

parent 9ac52653
module Reactix.DOM.Raw
(LeafFactory, TreeFactory
, button, div, div', i, i', p, p'
, button, div, div', i, i', p, p', span, span'
, text) where
import Reactix.React (Element, createDOMElement)
......@@ -33,9 +33,15 @@ i = createDOMElement "i"
i' :: LeafFactory
i' = createLeafDOMElement "i"
p :: TreeFactory
p = createDOMElement "p"
p' :: LeafFactory
p' = createLeafDOMElement "p"
span :: TreeFactory
span = createDOMElement "span"
span' :: LeafFactory
span' = createLeafDOMElement "span"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment