Skip to content

Instantly share code, notes, and snippets.

@maxkoretskyi
Created April 17, 2019 14:41
Show Gist options
  • Save maxkoretskyi/03434a8777b35d9c666faefe03d8ca8b to your computer and use it in GitHub Desktop.
Save maxkoretskyi/03434a8777b35d9c666faefe03d8ca8b to your computer and use it in GitHub Desktop.
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