561aa6891f
Big bang migration to Deno 🤯
12 lines
141 B
JavaScript
12 lines
141 B
JavaScript
function createElement(fn) {
|
|
return fn();
|
|
}
|
|
|
|
const React = { createElement };
|
|
|
|
function Asd() {
|
|
return "foo";
|
|
}
|
|
|
|
export default <Asd />;
|