Skip to content

Instantly share code, notes, and snippets.

@jamesvidler
Created July 31, 2019 16:59
Show Gist options
  • Save jamesvidler/ee2d5789326279d5f589c3bce7792df0 to your computer and use it in GitHub Desktop.
Save jamesvidler/ee2d5789326279d5f589c3bce7792df0 to your computer and use it in GitHub Desktop.
Agility React Component Example
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