libs/design/sidebar/examples/src/basic-sidebar/basic-sidebar.component.ts
import {
ChangeDetectionStrategy,
Component,
} from '@angular/core';
import { DAFF_SIDEBAR_COMPONENTS } from '@daffodil/design/sidebar';
@Component({
// eslint-disable-next-line @angular-eslint/component-selector
selector: 'basic-sidebar',
templateUrl: './basic-sidebar.component.html',
styleUrls: ['./basic-sidebar.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
standalone: true,
imports: [
DAFF_SIDEBAR_COMPONENTS,
],
})
export class BasicSidebarComponent {}