Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 1x | import { ChangeDetectionStrategy, Component } from '@angular/core';
import { RouterOutlet } from '@angular/router';
import { FooterComponent } from '../footer/footer.component';
import { HeaderComponent } from '../header/header.component';
import { SidebarComponent } from '../sidebar/sidebar.component';
/**
* Full screen layout for logged in views. Design is mobile first with header, main content, sidebar,
* and footer on smaller screens. Larger screens layout with full width header and footer, and middle
* content containing a sidebar and the main content area.
*/
@Component({
selector: 'app-standard-layout',
imports: [
FooterComponent,
HeaderComponent,
RouterOutlet,
SidebarComponent,
],
templateUrl: './standard.component.html',
styleUrl: './standard.component.scss',
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class StandardLayoutComponent {}
|