Skip to content

Instantly share code, notes, and snippets.

@Colour-Full
Created March 25, 2018 17:40
Show Gist options
  • Save Colour-Full/913db61f45c988123e6c16803495f096 to your computer and use it in GitHub Desktop.
Save Colour-Full/913db61f45c988123e6c16803495f096 to your computer and use it in GitHub Desktop.
React Simple Router Contact JSX
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