From 77135650cff45539fff70da24ee0912b42f2dad2 Mon Sep 17 00:00:00 2001 From: Dana Lambert Date: Wed, 1 Dec 2021 09:26:19 +1300 Subject: [PATCH] Add results description --- frontend/src/components/steps/results/ResultsStep.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/steps/results/ResultsStep.js b/frontend/src/components/steps/results/ResultsStep.js index 290830d..dabcde1 100644 --- a/frontend/src/components/steps/results/ResultsStep.js +++ b/frontend/src/components/steps/results/ResultsStep.js @@ -7,7 +7,9 @@ import Button from '@mui/material/Button'; import PlantRepository from '../../../repository/PlantRepository' import { Typography, Box } from '@mui/material'; import resultsBackgroundImage from '../../../assets/img/stepBackgrounds/step6.jpg'; +import staticText from '../../../assets/data/staticText.json' +const RESULTS_DESCRIPTION = Please review the plant species list – it can be saved as a CSV file or appended to a planting plan guidebook. Additional information on each species can be obtained by entering the plant species name into the search box at inaturalist.nz or in the "search flora" box at www.nzpcn.org.nz. Click the "Download PDF" button to create a planting plan guidebook specific to your project site.. export default function ResultsStep(props) { const [plants, setPlants] = useState([]); @@ -76,12 +78,13 @@ export default function ResultsStep(props) { const stepContent = (
- Plant List Results + {staticText.steps.results.title} + {RESULTS_DESCRIPTION}
)