Skip to content

Commit 7077a93

Browse files
committed
Resolved merge conflict
2 parents 1d5a816 + 212d167 commit 7077a93

27 files changed

Lines changed: 352 additions & 92 deletions
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
.file-upload{
3+
padding: 10px;
4+
background: red;
5+
display: table;
6+
color: #fff;
7+
}
8+
9+
input[type="file"] {
10+
display: none;
11+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<div class="container">
2+
<div class="row">
3+
<div class="col-md-12">
4+
<p>Online IDE</p>
5+
<textarea name="" id="" cols="100" rows="28" ></textarea>
6+
<div class="row">
7+
<div class="col-md-8">
8+
<label class="file-upload">Upload File
9+
<input type="file" class="form-control-file">
10+
</label>
11+
</div>
12+
<div class="col-md-4">
13+
<div class="form-check mr-auto">
14+
<input type="checkbox" class="form-check-input" id="exampleCheck1">
15+
<label class="form-check-label" for="exampleCheck1">Check me out</label>
16+
<button class="btn btn-dark">Compile</button>
17+
</div>
18+
</div>
19+
</div>
20+
</div>
21+
</div>
22+
</div>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2+
3+
import { IdeComponent } from './ide.component';
4+
5+
describe('IdeComponent', () => {
6+
let component: IdeComponent;
7+
let fixture: ComponentFixture<IdeComponent>;
8+
9+
beforeEach(async(() => {
10+
TestBed.configureTestingModule({
11+
declarations: [ IdeComponent ]
12+
})
13+
.compileComponents();
14+
}));
15+
16+
beforeEach(() => {
17+
fixture = TestBed.createComponent(IdeComponent);
18+
component = fixture.componentInstance;
19+
fixture.detectChanges();
20+
});
21+
22+
it('should create', () => {
23+
expect(component).toBeTruthy();
24+
});
25+
});
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { Component, OnInit } from '@angular/core';
2+
3+
@Component({
4+
selector: 'app-ide',
5+
templateUrl: './ide.component.html',
6+
styleUrls: ['./ide.component.css']
7+
})
8+
export class IdeComponent implements OnInit {
9+
10+
constructor() { }
11+
12+
ngOnInit() {
13+
}
14+
15+
}

codecamp-front/src/app/components/ranklist/ranklist.component.css

Whitespace-only changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<p>
2+
ranklist works!
3+
</p>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2+
3+
import { RanklistComponent } from './ranklist.component';
4+
5+
describe('RanklistComponent', () => {
6+
let component: RanklistComponent;
7+
let fixture: ComponentFixture<RanklistComponent>;
8+
9+
beforeEach(async(() => {
10+
TestBed.configureTestingModule({
11+
declarations: [ RanklistComponent ]
12+
})
13+
.compileComponents();
14+
}));
15+
16+
beforeEach(() => {
17+
fixture = TestBed.createComponent(RanklistComponent);
18+
component = fixture.componentInstance;
19+
fixture.detectChanges();
20+
});
21+
22+
it('should create', () => {
23+
expect(component).toBeTruthy();
24+
});
25+
});
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { Component, OnInit } from '@angular/core';
2+
3+
@Component({
4+
selector: 'app-ranklist',
5+
templateUrl: './ranklist.component.html',
6+
styleUrls: ['./ranklist.component.css']
7+
})
8+
export class RanklistComponent implements OnInit {
9+
10+
constructor() { }
11+
12+
ngOnInit() {
13+
}
14+
15+
}

codecamp-front/src/app/components/solution/solution.component.css

Whitespace-only changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<p>
2+
solution works!
3+
</p>

0 commit comments

Comments
 (0)