import { Component } from '@angular/core'; export const TARGET = 'destination'; export const BUTTON_ID = 'btn-1'; /** Dummy Component for testing the Angular Directive */ @Component({ selector: 'ngx-scroll-to', styles: [` #destination { margin-top: 100vh; } `], template: `
You've reached your destination
` }) export class DummyComponent { }