diff options
| author | Jacky Zhao <[email protected]> | 2020-05-10 15:48:39 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-05-10 15:48:39 -0700 |
| commit | b6ed0911033e0b707159b9e64fd7f356df217c19 (patch) | |
| tree | 9b437efad909ea324f039c555d52d150d92a4583 /frontend/src/components/App.js | |
| parent | Merge pull request #10 from jackyzha0/react (diff) | |
| parent | add password stuff + expiry stuff (diff) | |
| download | ctrl-v-b6ed0911033e0b707159b9e64fd7f356df217c19.tar.xz ctrl-v-b6ed0911033e0b707159b9e64fd7f356df217c19.zip | |
Merge pull request #11 from jackyzha0/pass_and_expiry
add password stuff + expiry stuff
Diffstat (limited to 'frontend/src/components/App.js')
| -rw-r--r-- | frontend/src/components/App.js | 2 |
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> ); } |