|
<section id="my-appointment__container"> |
|
<Header /> |
|
<Swipeable onSwipedLeft={swipingLeft} onSwipedRight={swipingRight}> |
|
<section className="my-appointment__body"> |
|
<section className="my-appointment__section" id="0"> |
|
<h2>My Appointment</h2> |
|
<p> |
|
You may find that just thinking about the possibility of a smear |
|
test triggers some difficult memories. If these feel particularly |
|
distressing it is important to speak to someone you trust. Please |
|
check out our ‘I need help’ page for some suggestions of places you |
|
can contact for support. Find here some practical tips to prepare |
|
for your appointment. |
|
</p> |
|
</section> |
|
<section className="my-appointment__section" id="1"> |
Keeping copy in components is a pain to maintain. I prefer keeping them in a separate json file and import them where needed. This makes copy changes easier to update and components easier to manage.
My-Body-Back/src/components/MyAppointment/MyAppointment.js
Lines 35 to 50 in 772e58b
Keeping copy in components is a pain to maintain. I prefer keeping them in a separate json file and import them where needed. This makes copy changes easier to update and components easier to manage.