Skip to content

Commit 0d33ef0

Browse files
committed
Merge pull request #11 from joneshf/master
Added props-less versions for DOM elements.
2 parents e5d5e2d + d3eb82d commit 0d33ef0

File tree

1 file changed

+129
-0
lines changed

1 file changed

+129
-0
lines changed

src/React/DOM.purs

Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,3 +148,132 @@ module React.DOM where
148148
rect = mkDOM "rect"
149149
stop = mkDOM "stop"
150150
svg = mkDOM "svg"
151+
152+
-- | Props-less versions
153+
a' = a {}
154+
abbr' = abbr {}
155+
address' = address {}
156+
area' = area {}
157+
article' = article {}
158+
aside' = aside {}
159+
audio' = audio {}
160+
b' = b {}
161+
base' = base {}
162+
base' = base {}
163+
bdi' = bdi {}
164+
bdo' = bdo {}
165+
big' = big {}
166+
blockquote' = blockquote {}
167+
body' = body {}
168+
br' = br {}
169+
button' = button {}
170+
canvas' = canvas {}
171+
caption' = caption {}
172+
cite' = cite {}
173+
code' = code {}
174+
col' = col {}
175+
colgroup' = colgroup {}
176+
dd' = dd {}
177+
del' = del {}
178+
details' = details {}
179+
dfn' = dfn {}
180+
div' = div {}
181+
dl' = dl {}
182+
dt' = dt {}
183+
em' = em {}
184+
embed' = embed {}
185+
fieldset' = fieldset {}
186+
figcaption' = figcaption {}
187+
figure' = figure {}
188+
footer' = footer {}
189+
form' = form {}
190+
h1' = h1 {}
191+
h2' = h2 {}
192+
h3' = h3 {}
193+
h4' = h4 {}
194+
h5' = h5 {}
195+
h6' = h6 {}
196+
head' = head {}
197+
header' = header {}
198+
hr' = hr {}
199+
html' = html {}
200+
i' = i {}
201+
iframe' = iframe {}
202+
iframe' = iframe {}
203+
img' = img {}
204+
input' = input {}
205+
ins' = ins {}
206+
kbd' = kbd {}
207+
keygen' = keygen {}
208+
label' = label {}
209+
legend' = legend {}
210+
li' = li {}
211+
link' = link {}
212+
main' = main {}
213+
map' = map {}
214+
mark' = mark {}
215+
menu' = menu {}
216+
menuitem' = menuitem {}
217+
meta' = meta {}
218+
meter' = meter {}
219+
nav' = nav {}
220+
noscript' = noscript {}
221+
object' = object {}
222+
ol' = ol {}
223+
optgroup' = optgroup {}
224+
option' = option {}
225+
output' = output {}
226+
p' = p {}
227+
param' = param {}
228+
param' = param {}
229+
pre' = pre {}
230+
progress' = progress {}
231+
q' = q {}
232+
rp' = rp {}
233+
rp' = rp {}
234+
rt' = rt {}
235+
ruby' = ruby {}
236+
s' = s {}
237+
samp' = samp {}
238+
samp' = samp {}
239+
script' = script {}
240+
section' = section {}
241+
select' = select {}
242+
small' = small {}
243+
source' = source {}
244+
span' = span {}
245+
strong' = strong {}
246+
style' = style {}
247+
sub' = sub {}
248+
summary' = summary {}
249+
sup' = sup {}
250+
table' = table {}
251+
tbody' = tbody {}
252+
td' = td {}
253+
textarea' = textarea {}
254+
tfoot' = tfoot {}
255+
th' = th {}
256+
thead' = thead {}
257+
time' = time {}
258+
title' = title {}
259+
tr' = tr {}
260+
track' = track {}
261+
u' = u {}
262+
ul' = ul {}
263+
ul' = ul {}
264+
var' = var {}
265+
video' = video {}
266+
wbr' = wbr {}
267+
circle' = circle {}
268+
defs' = defs {}
269+
g' = g {}
270+
line' = line {}
271+
line' = line {}
272+
linearGradient' = linearGradient {}
273+
path' = path {}
274+
polygon' = polygon {}
275+
polyline' = polyline {}
276+
radialGradient' = radialGradient {}
277+
rect' = rect {}
278+
stop' = stop {}
279+
svg' = svg {}

0 commit comments

Comments
 (0)