Skip to content
Snippets Groups Projects
drag-n-drop.service.ts 145 B
Newer Older
  • Learn to ignore specific revisions
  • import { Injectable } from '@angular/core';
    
    @Injectable({
      providedIn: 'root'
    })
    export class DragNDropService {
      isDragInProgress = false;
    }