16 lines
305 B
TypeScript
16 lines
305 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-role-management',
|
||
|
|
templateUrl: './role-management.component.html',
|
||
|
|
styleUrls: ['./role-management.component.scss']
|
||
|
|
})
|
||
|
|
export class RoleManagementComponent implements OnInit {
|
||
|
|
|
||
|
|
constructor() { }
|
||
|
|
|
||
|
|
ngOnInit() {
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|