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 (
{props.contentComponent ? ( props.contentComponent ) : ( {props.informationComponent} {props.selectionComponent} )}
); }