META-INF.resources.frontend.main-layout.ts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluent-vaadin-flow Show documentation
Show all versions of fluent-vaadin-flow Show documentation
Broderick Labs for fluent vaadin flow. Inherits common Vaadin components.
/*
* 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