Imported new component

This commit is contained in:
Kakabay 2023-01-30 19:17:53 +05:00
parent f440ac09f1
commit 687a408205
1 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,7 @@ import Header from './components/header/Header';
import Videos from './components/videos/Videos';
import Footer from './components/footer/Footer';
import News from './components/news/News';
import NewsScroll from './components/global/NewsScroll';
const App = () => {
return (
@ -23,7 +24,7 @@ const App = () => {
<Route path="/" element={<Main />} />
</Routes>
<Videos />
<News />
<NewsScroll />
<Footer />
</div>
);