import * as React from "react"; import { get } from "lodash"; // import { AccountCircle } from "@material-ui/icons"; import { style } from "./style"; import { default as defaultData } from "./data.json"; import { doIShow, combineData } from "../../utils"; import theme from "../../theme"; import { Block, Section, Headline, Text, Container, Button, Grid, GridItem, List, ListItem, } from "@sc/plugins/webcomponents/v2"; import { ListItemTypes } from "@sc/plugins/webcomponents/v2/ListItem/types"; import { Icon, IconTypes } from "@sc/plugins/webcomponents/v2/Icon"; import { ImagePlaceholder, VideoPlaceholder, ImagePlaceholderTypes, } from "../../Placeholders"; 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 (
{doIShow(content, "main_headline") && ( {get(content, "main_headline.html", "...")} )} {doIShow(content, "sub_headline") && ( {get(content, "sub_headline.html", "...")} )} Proven Strategy It's true. Getting results is much easier than you think. The truth is Proven Strategy It's true. Getting results is much easier than you think. The truth is Proven Strategy It's true. Getting results is much easier than you think. The truth is Proven Strategy It's true. Getting results is much easier than you think. The truth is
); }; export default Layout;