$0.00
Jacob Ley
Backend Engineer
@JacobLey
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="Jacob Ley" />,
mountNode
);
Sep, 2021
Saying hello! 👋
I am always trying to figure out the best way to write and maintain software across the stack.
$0.00
Jacob Ley
Backend Engineer
@JacobLey
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="Jacob Ley" />,
mountNode
);
Sep, 2021
Saying hello! 👋
I am always trying to figure out the best way to write and maintain software across the stack.