React-SaaS-sample/src/components/ContentSection.js
Ruidy Nemausat d501c9d04f template
2019-11-02 20:18:05 +01:00

25 lines
571 B
JavaScript

import React from "react";
import Section from "./Section";
import SectionHeader from "./SectionHeader";
function ContentSection(props) {
return (
<Section
color={props.color}
size={props.size}
backgroundImage={props.backgroundImage}
backgroundImageOpacity={props.backgroundImageOpacity}
>
<div className="container">
<SectionHeader
title={props.title}
subtitle={props.subtitle}
centered={true}
size={2}
/>
</div>
</Section>
);
}
export default ContentSection;