import React from "react"; import BackgroundImage from "./BackgroundImage"; import "./Section.scss"; function Section(props) { const { color, size, backgroundImage, backgroundImageOpacity, children, // Passed to section element ...otherProps } = props; return (
{backgroundImage && ( )} {props.children}
); } export default Section;