mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
524 B
19 lines
524 B
import { Config, ConfigState } from '@abp/ng.core';
|
|
import { slideFromBottom } from '@abp/ng.theme.shared';
|
|
import { Component } from '@angular/core';
|
|
import { Store } from '@ngxs/store';
|
|
|
|
@Component({
|
|
selector: ' abp-layout',
|
|
templateUrl: './layout.component.html',
|
|
animations: [slideFromBottom],
|
|
})
|
|
export class LayoutComponent {
|
|
isCollapsed: boolean = true;
|
|
|
|
get appInfo(): Config.Application {
|
|
return this.store.selectSnapshot(ConfigState.getApplicationInfo);
|
|
}
|
|
|
|
constructor(private store: Store) {}
|
|
}
|
|
|