2021-10-18 15:46:18 +13:00
|
|
|
import { Row, Col } from 'reactstrap'
|
|
|
|
import SampleBackground from '../../assets/img/sample-bg.jpg';
|
|
|
|
|
|
|
|
export default function Step(props) {
|
|
|
|
const StepBackgroundImage = props.backgroundImage || SampleBackground
|
|
|
|
const stepBackground = {
|
|
|
|
backgroundImage: `url(${StepBackgroundImage})`
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='step-container' style={stepBackground}>
|
|
|
|
<div className='step-overlay'>
|
|
|
|
{props.contentComponent ? (
|
|
|
|
props.contentComponent
|
|
|
|
) : (
|
|
|
|
<Row style={{height: '100%'}}>
|
2021-10-20 09:51:49 +13:00
|
|
|
<Col md="4" sm="12" style={{display: 'flex', alignItems: 'center'}}>
|
2021-10-18 15:46:18 +13:00
|
|
|
{props.informationComponent}
|
|
|
|
</Col>
|
2021-10-20 09:51:49 +13:00
|
|
|
<Col md="8" sm="12" style={{display: 'flex', alignItems: 'center'}}>
|
2021-10-18 15:46:18 +13:00
|
|
|
{props.selectionComponent}
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|