Skip to content

Instantly share code, notes, and snippets.

@shivampip
Created February 14, 2020 15:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shivampip/58afe1a2c44ff4150719f32dfe450d61 to your computer and use it in GitHub Desktop.
Save shivampip/58afe1a2c44ff4150719f32dfe450d61 to your computer and use it in GitHub Desktop.
[MEDIUM][REACT][EX-SCR] demo component
import React from "react";
class Demo extends React.Component {
render() {
if (this.props.ready) {
window.helloLife("Hey There");
}
return <div>THis is a demo</div>;
}
}
export default Demo;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment