@malga-checkout-full/core
Version:
Core components for Malga Checkout Full
19 lines (18 loc) • 769 B
JavaScript
import { Component, Host, h } from '@stencil/core';
export class MalgaCheckoutFullContent {
render() {
return (h(Host, { class: { 'malga-checkout-full-content__container': true } },
h("main", { class: { 'malga-checkout-full-content__main': true } },
h("section", { class: { 'malga-checkout-full-content__section': true } },
h("slot", { name: "order" })),
h("section", { class: { 'malga-checkout-full-content__section': true } },
h("slot", { name: "informations" })))));
}
static get is() { return "malga-checkout-full-content"; }
static get originalStyleUrls() { return {
"$": ["malga-checkout-full-content.scss"]
}; }
static get styleUrls() { return {
"$": ["malga-checkout-full-content.css"]
}; }
}