2018-01-09 15:36:42 +01:00

8 lines
102 B
JavaScript

function render(text) {
text += "yes";
return function () {
return <div>{text}</div>;
};
}