import { Enhance } from "./Enhance"; class MyComponent { render() { if (!this.data) return
Waiting...
; return
{this.data}
; } } export default Enhance(MyComponent); // Enhanced component