penambahan page master status, duration use, role, user

This commit is contained in:
2024-05-07 13:21:46 +07:00
parent 066c40b78c
commit 6239e473b3
19 changed files with 179 additions and 3 deletions

View File

@@ -0,0 +1 @@
<p>master-role works!</p>

View File

@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { MasterRoleComponent } from './master-role.component';
describe('MasterRoleComponent', () => {
let component: MasterRoleComponent;
let fixture: ComponentFixture<MasterRoleComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ MasterRoleComponent ]
})
.compileComponents();
fixture = TestBed.createComponent(MasterRoleComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@@ -0,0 +1,10 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-master-role',
templateUrl: './master-role.component.html',
styleUrls: ['./master-role.component.css']
})
export class MasterRoleComponent {
}