Skip to content

Instantly share code, notes, and snippets.

@joelvarty
Created September 6, 2019 12:47
Embed
What would you like to do?
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