mirror of
https://github.com/rjNemo/React-SaaS-sample
synced 2026-06-06 05:06:38 +00:00
21 lines
542 B
JavaScript
21 lines
542 B
JavaScript
import React from "react";
|
|
|
|
import Section from "./Section";
|
|
import SectionHeader from "./SectionHeader";
|
|
import ForgotPass from "./ForgotPass";
|
|
|
|
const ForgotPassSection = ({ color, size, title, subtitle, buttonText }) => (
|
|
<Section color={color} size={size}>
|
|
<div className="container">
|
|
<SectionHeader
|
|
title={title}
|
|
subtitle={subtitle}
|
|
centered={true}
|
|
size={3}
|
|
/>
|
|
<ForgotPass buttonText={buttonText} parentColor={color} />
|
|
</div>
|
|
</Section>
|
|
);
|
|
|
|
export default ForgotPassSection;
|