import * as React from "react"; import { get } from "lodash"; 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, FormBuilder, } from "@sc/plugins/webcomponents/v2"; import { FormFieldTypes } from "@sc/modules/v2/CRUD/FormBuilder/types"; import { IconTypes } from "@sc/plugins/webcomponents/v2/Icon"; 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 (
Don't waste your time join us The goal is to facilitate usability and efficiency as much as possible. Common elements found in interface design Create new account The goal is to facilitate usability and efficieny as much as possible
); }; export default Layout;