Add provided step background images

This commit is contained in:
Dana Lambert 2021-11-09 15:29:18 +13:00
parent d5d029cd2f
commit 6711719908
15 changed files with 24 additions and 16 deletions

View file

@ -2,6 +2,7 @@ import Step from '../Step';
import ZoneSelector from './ZoneSelector'
import StepInformation from '../StepInformation';
import staticText from '../../../assets/data/staticText.json'
import zoneBackgroundImage from '../../../assets/img/stepBackgrounds/step4.jpg';
export default function ZoneStep(props) {
const zoneInfoPanel = (
@ -16,6 +17,6 @@ export default function ZoneStep(props) {
)
return (
<Step informationComponent={zoneInfoPanel} selectionComponent={zoneSelectionPanel} />
<Step informationComponent={zoneInfoPanel} selectionComponent={zoneSelectionPanel} backgroundImage={zoneBackgroundImage} />
)
}