Created
March 25, 2018 17:40
-
-
Save Colour-Full/913db61f45c988123e6c16803495f096 to your computer and use it in GitHub Desktop.
React Simple Router Contact JSX
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
import React, { Component } from "react"; | |
class Contact extends Component { | |
render() { | |
return ( | |
<div> | |
<h2>Get In Touch</h2> | |
<p>Phone: XXXXXXXXXX</p> | |
<p>Email: XXXXX@XXXXX</p> | |
</div> | |
); | |
} | |
} | |
export default Contact; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment