/* * Squidex Headless CMS * * @license * Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved. */ import { ChangeDetectionStrategy, Component } from '@angular/core'; import { AppsState } from '@app/shared'; @Component({ selector: 'sqx-left-menu', styleUrls: ['./left-menu.component.scss'], templateUrl: './left-menu.component.html', changeDetection: ChangeDetectionStrategy.OnPush }) export class LeftMenuComponent { constructor( public readonly appsState: AppsState ) { } }