Skip to content

Commit

Permalink
Create App.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Aakibgithuber authored Feb 29, 2024
1 parent d9f8fe3 commit d51e224
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import './App.css';
import BestRest from './Components/BestRest';
import Footer from './Components/Footer';
import Navigate from './Components/Navigate';
import OffersBanner from './Components/OffersBanner';
import RestaurentChain from './Components/RestaurentChain';
import RestaurentOnline from './Components/RestaurentOnline';

function App() {
return (
<div>
<Navigate/>
<OffersBanner/>
<RestaurentChain/>
<RestaurentOnline/>
<BestRest/>
<Footer/>
</div>
);
}

export default App;

0 comments on commit d51e224

Please sign in to comment.