UNPKG
@khulnasoft.com/dev-tools
Version:
latest (1.10.0)
1.10.0
1.0.0
KhulnaSoft Visual CMS Devtools
khulnasoft.com
@khulnasoft.com/dev-tools
/
figma
/
jsx-runtime
/
index.js
19 lines
(17 loc)
•
232 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export
function
jsx(
type
, props, key) {
return
{
type
, props, key, }; }
export
function
jsxs(
type
, props, key, ...children) {
return
{
type
, props: { ...props, children, }, key, }; }