-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
31 lines (28 loc) · 772 Bytes
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import React, { useEffect } from 'react';
import './App.css';
import AOS from 'aos';
import Header from './components/Header/Header';
import Main from './components/Main/Main';
import PromocaoAmigo from './components/PromocaoAmigo/PromocaoAmigo';
import PromocaoCupom from './components/PromocaoCupom/PromocaoCupom';
import PromocaoCashback from './components/PromocaoCashback/PromocaoCashback';
import Footer from './components/Footer/Footer';
function App() {
AOS.init({
duration: 1000
});
useEffect(() => {
document.title = "TheLivery"
});
return (
<div style={{ height: '100%' }}>
<Header />
<Main />
<PromocaoAmigo />
<PromocaoCupom />
<PromocaoCashback />
<Footer />
</div>
);
};
export default App;