Created
April 17, 2019 14:41
-
-
Save maxkoretskyi/03434a8777b35d9c666faefe03d8ca8b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class AgGridReact extends React.Component { | |
portals: ReactPortal[] = []; | |
render() { | |
return React.createElement<any>("div", { | |
style: this.createStyleForDiv(), | |
ref: (e: HTMLElement) => { | |
this.eGridDiv = e; | |
} | |
}, this.portals); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment