@rescript/std
Version:
The motiviation of this repo is that when ReScript users want to share their library with JS users, the JS users don't need have ReScript toolchain installed, this makes sharing code with JS users easier (more details on that topic can be found in our [Ex
30 lines (23 loc) • 733 B
JavaScript
import * as React from "react";
import * as Caml_splice_call from "./caml_splice_call.js";
function createElementWithKey(key, component, props) {
return React.createElement(component, key !== undefined ? Object.assign({
key: key
}, props) : props);
}
function createElementVariadicWithKey(key, component, props, elements) {
return Caml_splice_call.spliceApply(React.createElement, [
component,
key !== undefined ? Object.assign({
key: key
}, props) : props,
elements
]);
}
var Jsx;
export {
Jsx ,
createElementWithKey ,
createElementVariadicWithKey ,
}
/* react Not a pure module */