graycoreio/daffodil

View on GitHub
libs/design/sidebar/examples/src/side-fixed-sidebar/side-fixed-sidebar.component.ts

Summary

Maintainability
A
0 mins
Test Coverage
import {
  ChangeDetectionStrategy,
  Component,
} from '@angular/core';

import { DAFF_NAVBAR_COMPONENTS } from '@daffodil/design/navbar';
import { DAFF_SIDEBAR_COMPONENTS } from '@daffodil/design/sidebar';

@Component({
  // eslint-disable-next-line @angular-eslint/component-selector
  selector: 'side-fixed-sidebar',
  templateUrl: './side-fixed-sidebar.component.html',
  styleUrls: ['side-fixed-sidebar.component.scss'],
  changeDetection: ChangeDetectionStrategy.OnPush,
  standalone: true,
  imports: [DAFF_SIDEBAR_COMPONENTS, DAFF_NAVBAR_COMPONENTS],
})
export class SideFixedSidebarComponent {}