5 lines
163 B
JavaScript
5 lines
163 B
JavaScript
function render({ text, className, id, ...props }) {
|
|
// intentionally ignoring props
|
|
return () => (<Component text={text} className={className} id={id} />);
|
|
}
|