Skip to content

Instantly share code, notes, and snippets.

@sajithdilshan
Created November 19, 2017 12:12
Show Gist options
  • Save sajithdilshan/3b44703b23aedb89eaba6209e8acec64 to your computer and use it in GitHub Desktop.
Save sajithdilshan/3b44703b23aedb89eaba6209e8acec64 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
class Alice extends Component {
constructor(props) {
super(props)
this.state = {
greeting: props.newMsg
}
}
render() {
return (
<div>
<h2> {this.state.greeting} </h2>
</div>
);
}
}
export default Alice;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment