Skip to content

Instantly share code, notes, and snippets.

@gdyrrahitis
Created May 9, 2018 18:58
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 gdyrrahitis/9c3c9dc879422883949389a9ea561761 to your computer and use it in GitHub Desktop.
Save gdyrrahitis/9c3c9dc879422883949389a9ea561761 to your computer and use it in GitHub Desktop.
import React from "react";
import ReactDOM from "react-dom";
export class Jumbotron extends React.Component {
constructor(props) {
super();
this.props = props;
}
render() {
return <div className="jumbotron">
<h3>{this.props.hello}</h3>
</div>;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment