custom-layout.component.ts 360 Bytes
Newer Older
Ooh-Ao committed
1 2 3 4 5 6 7 8 9 10 11 12
import { Component } from '@angular/core';
import * as switcher from '../../../shared/components/switcher/switcher'; 
@Component({
  selector: 'app-custom-layout',
  templateUrl: './custom-layout.component.html',
  styleUrls: ['./custom-layout.component.scss']
})
export class CustomLayoutComponent {
  constructor() {
    switcher.localStorageBackUp();
  }
}