General improvements
This commit is contained in:
parent
500707844a
commit
562b2a4a30
3 changed files with 20 additions and 13 deletions
|
@ -2,10 +2,13 @@ import { Link } from "react-router-dom"
|
|||
import "../styles/ConfirmedBookingPage.css"
|
||||
|
||||
export const ConfirmedBookingPage = () => (
|
||||
<article className="confirmed">
|
||||
<h1>Booking Confirmed</h1>
|
||||
<p>
|
||||
Your booking has been confirmed. <Link to="/">Back to home</Link>
|
||||
</p>
|
||||
</article>
|
||||
<section className="confirmed">
|
||||
<article>
|
||||
<h1>Booking Confirmed</h1>
|
||||
<p>
|
||||
Your booking has been confirmed.{" "}
|
||||
<Link to="/">Back to home</Link>
|
||||
</p>
|
||||
</article>
|
||||
</section>
|
||||
)
|
||||
|
|
Reference in a new issue