penambahan page master status, duration use, role, user
This commit is contained in:
@@ -0,0 +1 @@
|
||||
<p>master-user works!</p>
|
||||
@@ -0,0 +1,23 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { MasterUserComponent } from './master-user.component';
|
||||
|
||||
describe('MasterUserComponent', () => {
|
||||
let component: MasterUserComponent;
|
||||
let fixture: ComponentFixture<MasterUserComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ MasterUserComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(MasterUserComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,10 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-master-user',
|
||||
templateUrl: './master-user.component.html',
|
||||
styleUrls: ['./master-user.component.css']
|
||||
})
|
||||
export class MasterUserComponent {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user