-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added containers and classes to host section. Restyled vans list items
- Loading branch information
1 parent
e6f8bae
commit 9042519
Showing
7 changed files
with
38 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
function Dashboard() { | ||
return <h1>Dashboard Updated</h1> | ||
return ( | ||
<div className="hosts-container content-container hosts-dashboard"> | ||
<h1>Dashboard Updated</h1> | ||
</div> | ||
) | ||
} | ||
|
||
export default Dashboard |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
function HostVanDetail() { | ||
return <h1>Your Listed Van Details</h1> | ||
return ( | ||
<div className="hosts-container content-container host-van-detail"> | ||
<h1>Your Listed Van Details</h1> | ||
</div> | ||
) | ||
} | ||
|
||
export default HostVanDetail |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
function HostVans() { | ||
return <h1>Your Listed Vans</h1> | ||
return ( | ||
<div className="hosts-container content-container host-vans"> | ||
<h1>Your Listed Vans</h1> | ||
</div> | ||
) | ||
} | ||
|
||
export default HostVans |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
function Income() { | ||
return <h1>Income</h1> | ||
return ( | ||
<div className="hosts-container content-container hosts-income"> | ||
<h1>Income</h1> | ||
</div> | ||
) | ||
} | ||
|
||
export default Income |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
function Reviews() { | ||
return <h1>Reviews</h1> | ||
return ( | ||
<div className="hosts-container content-container hosts-reviews"> | ||
<h1>Reviews</h1> | ||
</div> | ||
) | ||
} | ||
|
||
export default Reviews |