Created
July 22, 2019 01:00
-
-
Save J3698/1c675d3b9faea117efa7b78df9a20527 to your computer and use it in GitHub Desktop.
UrlMem App.js
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'; | |
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"> | |
© 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