aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/App.js
diff options
context:
space:
mode:
authorjackyzha0 <[email protected]>2020-05-10 15:43:35 -0700
committerjackyzha0 <[email protected]>2020-05-10 15:43:35 -0700
commit4545db101abfdcac91cc7cabf7bde180b54e9be9 (patch)
tree9b437efad909ea324f039c555d52d150d92a4583 /frontend/src/components/App.js
parentMerge pull request #10 from jackyzha0/react (diff)
downloadctrl-v-4545db101abfdcac91cc7cabf7bde180b54e9be9.tar.xz
ctrl-v-4545db101abfdcac91cc7cabf7bde180b54e9be9.zip
add password stuff + expiry stuff
Diffstat (limited to 'frontend/src/components/App.js')
-rw-r--r--frontend/src/components/App.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/frontend/src/components/App.js b/frontend/src/components/App.js
index eeb3e58..17240f5 100644
--- a/frontend/src/components/App.js
+++ b/frontend/src/components/App.js
@@ -1,12 +1,14 @@
import React from 'react';
import Header from './Header'
import PasteArea from './PasteArea'
+import Footer from './Footer'
function App() {
return (
<div className="lt-content-column">
<Header />
<PasteArea />
+ <Footer />
</div>
);
}