22 lines
565 B
JavaScript
22 lines
565 B
JavaScript
import React from 'react';
|
|
import './App.css';
|
|
import Header from './components/Header';
|
|
import ApartmentRentals from './components/ApartmentRentals';
|
|
import ApartmentOptions from './components/ApartmentOptions';
|
|
import ApartmentAmenities from './components/ApartmentAmenities';
|
|
import NearbyAttractions from './components/NearbyAttractions';
|
|
|
|
function App() {
|
|
return (
|
|
<div className='app'>
|
|
<Header />
|
|
<ApartmentRentals />
|
|
<ApartmentOptions />
|
|
<ApartmentAmenities />
|
|
<NearbyAttractions />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|