All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.frontend.main-layout.ts Maven / Gradle / Ivy

There is a newer version: 22.0.1
Show newest version
/*
 * Copyright (c) 2008 - 2020. - Broderick Labs.
 * Author: Broderick Johansson
 * E-mail: [email protected]
 * Modify date:2020-06-19 15:40:31
 * _____________________________
 * Project name: fluent-vaadin-flow
 * Class name:D:/broderick/develop/vaadin/16/fluent-vaadin-flow/frontend/main-layout.ts
 * Copyright (c) 2008 - 2020. - Broderick Labs.
 */

import {css, customElement, html, LitElement} from 'lit-element';

@customElement('main-layout')
export class MainLayoutElement extends LitElement {

    static get styles() {
        return css`
      :host {
        display: block;
        height: 100%;
      }
    `;
    }

    render() {
        return html`
      Client View
      Server View
      
     `;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy