Skip to content

Instantly share code, notes, and snippets.

@joelvarty
Created September 6, 2019 12:47
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 joelvarty/8f1eebd7076703a18f682042beb59113 to your computer and use it in GitHub Desktop.
Save joelvarty/8f1eebd7076703a18f682042beb59113 to your computer and use it in GitHub Desktop.
Agility Tutorial Module
import React, { Component } from 'react';
import './Jumbotron.css'
class Jumbotron extends Component {
render() {
return (
<section className="jumbotron">
<h1>{this.props.item.fields.title}</h1>
<h2>{this.props.item.fields.subTitle}</h2>
</section>
);
}
}
export default Jumbotron;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment