Skip to content
Snippets Groups Projects
Select Git revision
  • 2b37f5cc6da7d424cd8966a1fa6d2fe759db4fd0
  • master default protected
  • 2023-ujoncdelutan
  • 2023-update
  • 1.4.7 protected
  • 1.4.6 protected
  • 1.4.5 protected
  • 1.4.4 protected
  • 1.4.3 protected
  • 1.4.2 protected
  • 1.4.1 protected
  • 1.4.0 protected
  • 1.3.19 protected
  • 1.3.18 protected
  • 1.3.17 protected
  • 1.3.16 protected
  • 1.3.15 protected
  • 1.3.14 protected
  • 1.3.13 protected
  • 1.3.12 protected
  • 1.3.10 protected
  • 1.3.11 protected
  • 1.3.9 protected
  • 1.3.8 protected
24 results

App.js

Blame
  • App.js 506 B
    import React from 'react';
    import Header from './Header';
    import Main from './Main';
    import Footer from './Footer';
    
    
    
    const App = () => (
      <div style={{ minHeight: '100%', position: 'relative' }}>
        <header id='header' >
          <Header />
        </header>
        <main id='main' style={{ minHeight: '100%', position: 'relative' }}>
          <Main />
        </main>
        <footer id='footer' style={{ position: 'absolute', width: '100%', bottom: '0' }}>
          <Footer />
        </footer>
      </div>
    );
    
    export default App;