right-tree/frontend/src/components/steps/Step.js

30 lines
1 KiB
JavaScript
Raw Normal View History

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%'}}>
<Col md="4" sm="12" style={{display: 'flex', alignItems: 'center'}}>
{props.informationComponent}
</Col>
<Col md="8" sm="12" style={{display: 'flex', alignItems: 'center'}}>
{props.selectionComponent}
</Col>
</Row>
)}
</div>
</div>
);
}