Co-authored-by: Brian Ng <bng412@gmail.com> Co-authored-by: Babel Bot <babel-bot@users.noreply.github.com>
23 lines
628 B
JavaScript
23 lines
628 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
|
|
import { Fragment as _Fragment } from "react/jsx-runtime";
|
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
|
/*#__PURE__*/
|
|
_jsx("div", {
|
|
children: /*#__PURE__*/_jsxs(_Fragment, {
|
|
children: [/*#__PURE__*/_jsxs(_Fragment, {
|
|
children: [/*#__PURE__*/_jsx("span", {
|
|
children: "Hello"
|
|
}), /*#__PURE__*/_jsx("span", {
|
|
children: "world"
|
|
})]
|
|
}), /*#__PURE__*/_jsxs(_Fragment, {
|
|
children: [/*#__PURE__*/_jsx("span", {
|
|
children: "Goodbye"
|
|
}), /*#__PURE__*/_jsx("span", {
|
|
children: "world"
|
|
})]
|
|
})]
|
|
})
|
|
});
|