blob: 2e663b7ce50381327e8bc1cfccdf86fa70c47bea [file] [log] [blame]
/**
* Author: Jakub Man <xmanja00@stud.fit.vutbr.cz>
* Container for the devices tab
*/
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'nc-devices',
templateUrl: './devices.component.html',
styleUrls: ['./devices.component.scss']
})
export class DevicesComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}