Skip to content

Commit 814101b

Browse files
committed
fix typo createElementVariadicWithKey
1 parent 86401bc commit 814101b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/React.res

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ external cloneElement: (element, 'props) => element = "cloneElement"
2727
external createElementVariadic: (component<'props>, 'props, array<element>) => element =
2828
"createElement"
2929

30-
let createDOMElementVariadicWithKey = (component, props, elements, key) =>
30+
let createElementVariadicWithKey = (component, props, elements, key) =>
3131
createElementVariadic(component, Jsx.addKeyProp(props, key), elements)
3232

3333
@module("react/jsx-runtime")

0 commit comments

Comments
 (0)