File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import React from "react" ;
2+ import { Container } from "../../reusecore/Layout" ;
3+ import MinimizeComplexitySection from "./minimize-complexity-section" ;
4+ import BannerSection from "./solutions-banner" ;
5+ import IssuesSection from "./solutions-issues" ;
6+ import SolutionsWrapper from "./solutions.style" ;
7+ import ManageProcedures from "./manage-procedures" ;
8+ import OrganizeDeployments from "./organize-deployments" ;
9+ import Review from "./review" ;
10+ import QASection from "./qa-section" ;
11+ import WhatsNext from "./whats-next" ;
12+
13+ const Solutions = ( props ) => {
14+ return (
15+ < SolutionsWrapper >
16+ < Container >
17+ < BannerSection />
18+ < IssuesSection />
19+ < MinimizeComplexitySection />
20+ < ManageProcedures />
21+ < OrganizeDeployments />
22+ < Review />
23+ < QASection />
24+ < WhatsNext />
25+ </ Container >
26+ </ SolutionsWrapper >
27+ ) ;
28+ } ;
29+
30+ export default Solutions ;
You can’t perform that action at this time.
0 commit comments