$0.00
Matthew Gaiser
Software Developer
@matthewgaiser
class HelloMessage extends React.Component {
handlePress = () => {
alert('Hello')
}
render() {
return (
<div>
<p>Hello, my name is {this.props.name}</p>
<button onClick={this.handlePress}>Say Hello</button>
</div>
);
}
}
ReactDOM.render(
<HelloMessage name="Matthew Gaiser" />,
mountNode
);
Sep, 2021
Saying hello! 👋
I'm Matt Gaiser, a software developer with AltaML, the #1 ranked solver on MindSumo, a computer engineering graduate of Queen's University, a top 50 Major League Hacking hacker of 2020, an avid hackathon attendee
$0.00
Matthew Gaiser
Software Developer
@matthewgaiser
class HelloMessage extends React.Component {
handlePress = () => {
alert('Hello')
}
render() {
return (
<div>
<p>Hello, my name is {this.props.name}</p>
<button onClick={this.handlePress}>Say Hello</button>
</div>
);
}
}
ReactDOM.render(
<HelloMessage name="Matthew Gaiser" />,
mountNode
);
Sep, 2021
Saying hello! 👋
I'm Matt Gaiser, a software developer with AltaML, the #1 ranked solver on MindSumo, a computer engineering graduate of Queen's University, a top 50 Major League Hacking hacker of 2020, an avid hackathon attendee