Last active
July 17, 2017 17:39
-
-
Save tmikeschu/5e71a1049876ed138f54aa64954385ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// src/App/About/About.jsx | |
import React, { Component } from 'react' | |
export default class About extends Component { | |
render() { | |
return ( | |
<article className="about"> | |
<section className="who"> | |
<h2>Who</h2> | |
<p>We are a pair of lunatics who...</p> | |
</section> | |
... | |
</article> | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment