* [babel 8] Remove `useSpread` and `useBuiltIns` jsx options backport of 8cc8696851fa4bf02d7f6ae591404626d1ca32a3 Co-authored-by: Nicolò Ribaudo <nicolo.ribaudo@gmail.com> Co-authored-by: Brian Ng <bng412@gmail.com> * Update fixtures (Windows) Co-authored-by: Huáng Jùnliàng <jlhwung@gmail.com> Co-authored-by: Brian Ng <bng412@gmail.com> Co-authored-by: Babel Bot <babel-bot@users.noreply.github.com>
33 lines
575 B
JavaScript
33 lines
575 B
JavaScript
/*#__PURE__*/
|
|
React.createElement(E, babelHelpers.extends({}, props, {
|
|
last: true
|
|
}));
|
|
|
|
/*#__PURE__*/
|
|
React.createElement(E, babelHelpers.extends({
|
|
first: true
|
|
}, props));
|
|
|
|
/*#__PURE__*/
|
|
React.createElement(E, babelHelpers.extends({}, pre, suf));
|
|
|
|
/*#__PURE__*/
|
|
React.createElement(E, babelHelpers.extends({
|
|
first: true
|
|
}, pre, {
|
|
mid: true
|
|
}, suf));
|
|
|
|
/*#__PURE__*/
|
|
React.createElement(E, babelHelpers.extends({}, pre, {
|
|
mid: true
|
|
}, suf, {
|
|
last: true
|
|
}));
|
|
|
|
/*#__PURE__*/
|
|
React.createElement(E, babelHelpers.extends({}, pre, {
|
|
mid1: true,
|
|
mid2: true
|
|
}, suf));
|