mirror of https://github.com/Squidex/squidex.git
8 changed files with 64 additions and 2 deletions
@ -0,0 +1,7 @@ |
|||
<sqx-title message="Cluster"></sqx-title> |
|||
|
|||
<sqx-panel desiredWidth="*" minWidth="50rem" isFullSize="true"> |
|||
<div inner> |
|||
<iframe src="/orleans"></iframe> |
|||
</div> |
|||
</sqx-panel> |
|||
@ -0,0 +1,9 @@ |
|||
@import '_vars'; |
|||
@import '_mixins'; |
|||
|
|||
iframe { |
|||
@include absolute(0, 0, 0, 0); |
|||
min-width: 100%; |
|||
min-height: 100%; |
|||
border: 0; |
|||
} |
|||
@ -0,0 +1,22 @@ |
|||
/* |
|||
* Squidex Headless CMS |
|||
* |
|||
* @license |
|||
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved. |
|||
*/ |
|||
|
|||
import { Component } from '@angular/core'; |
|||
|
|||
import { UIState } from '@app/shared'; |
|||
|
|||
@Component({ |
|||
selector: 'sqx-cluster-area', |
|||
styleUrls: ['./cluster-page.component.scss'], |
|||
templateUrl: './cluster-page.component.html' |
|||
}) |
|||
export class ClusterPageComponent { |
|||
constructor( |
|||
public readonly uiState: UIState |
|||
) { |
|||
} |
|||
} |
|||
Loading…
Reference in new issue