mirror of
https://github.com/rjNemo/React-SaaS-sample
synced 2026-06-06 05:06:38 +00:00
25 lines
571 B
JavaScript
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;
|