24 lines
558 B
JavaScript
24 lines
558 B
JavaScript
import React from 'react';
|
|
import Header from './components/Header';
|
|
import Hero from './components/Hero';
|
|
import TopEBikes from './components/TopEBikes';
|
|
import ProductSections from './components/ProductSections';
|
|
import Footer from './components/Footer';
|
|
import CookieConsent from './components/CookieConsent';
|
|
|
|
function App() {
|
|
return (
|
|
<div className="App">
|
|
<Header />
|
|
<main>
|
|
<Hero />
|
|
<TopEBikes />
|
|
<ProductSections />
|
|
</main>
|
|
<Footer />
|
|
<CookieConsent />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App; |