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

12 lines
169 B
JavaScript

function render(text) {
return function () {
return <div>{text}</div>;
};
}
function render() {
return function (text) {
return <div>{text}</div>;
};
}