Skip to content

Instantly share code, notes, and snippets.

@J3698
Created July 22, 2019 01:00
Show Gist options
  • Save J3698/1c675d3b9faea117efa7b78df9a20527 to your computer and use it in GitHub Desktop.
Save J3698/1c675d3b9faea117efa7b78df9a20527 to your computer and use it in GitHub Desktop.
UrlMem App.js
import React, { Component } from 'react';
import UrlShortening from './UrlShortening.js';
import './App.css';
class App extends Component {
render() {
return (
<div className="App">
<div className="Header">
<a className="blogButton" href="https://antiprojects.com/urlmem.html">Blog</a>
</div>
<p className="bigIntro">
<strong>
UrlMem
</strong>
</p>
<p className="smallIntro">
Shortened URLS made memorable
</p>
<UrlShortening />
<div className="Footer">
&copy; 2019 Antioch Sanders
<br />
[email protected]
</div>
</div>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment