import { LitElement, css, html, unsafeCSS } from "lit";
import { customElement } from "lit/decorators.js";
import ComponentStyle from "@styles/orbit/ui/tems-viewport.scss?inline";
@customElement("tems-viewport")
export class TemsViewport extends LitElement {
static styles = css`
${unsafeCSS(ComponentStyle)}
`;
render() {
return html`
`;
}
}