5 lines
83 B
JavaScript
5 lines
83 B
JavaScript
function render() {
|
|
this.component = "div";
|
|
return () => <this.component />;
|
|
}
|