libs/design/sidebar/examples/src/sidebar-with-sticky-content/sidebar-with-sticky-content.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: 'sidebar-with-sticky-content',
templateUrl: './sidebar-with-sticky-content.component.html',
styleUrls: ['sidebar-with-sticky-content.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
standalone: true,
imports: [
DAFF_SIDEBAR_COMPONENTS,
],
})
export class SidebarWithStickyContentComponent {}