This repository has been archived on 2026-02-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

11 lines
145 B
JavaScript

function render() {
return <foo />;
}
function render() {
var text = getText();
return function () {
return <foo>{text}</foo>;
};
}