8 lines
102 B
JavaScript
8 lines
102 B
JavaScript
function render(text) {
|
|
text += "yes";
|
|
|
|
return function () {
|
|
return <div>{text}</div>;
|
|
};
|
|
}
|