import * as React from "react"; import { get } from "lodash"; import { CheckCircleOutline } from "@material-ui/icons"; import { style } from "./style"; import { default as defaultData } from "./data.json"; import { doIShow, combineData } from "../../utils"; import { Block, Section, Container, Grid, GridItem, Headline, List, ListItem, } from "@sc/plugins/webcomponents/v2"; import { Icon, IconTypes } from "@sc/plugins/webcomponents/v2/Icon"; import { ImagePlaceholder, ImagePlaceholderTypes } from "../../Placeholders"; import theme from "../../theme"; type LayoutProps = { data: any; }; const Layout: React.FC = ({ data }) => { const initialContent = { main_headline: { html: "Headline Goes Here", }, sub_headline: { html: "Sub Headline Text Content Goes Here", }, }; const content = combineData(initialContent, defaultData, data); return (
Easy Pack Full all day support Always open for communication Nice work approach Best field advisers ever Ultimate Pack Full all day support Always open for communication Nice work approach Best field advisers ever
); }; export default Layout;