mirror of
https://github.com/swc-project/swc.git
synced 2025-01-03 19:14:01 +03:00
9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
|
import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
|
||
|
export var App = function() {
|
||
|
return _jsx(_Fragment, {
|
||
|
children: _jsx("div", {
|
||
|
children: "1"
|
||
|
})
|
||
|
});
|
||
|
};
|