Skip to content
Snippets Groups Projects
Commit c9e4da9c authored by alec.schmidt's avatar alec.schmidt
Browse files

removed css files

parent 6c36eff0
No related branches found
No related tags found
No related merge requests found
Showing
with 5 additions and 12 deletions
...@@ -5,8 +5,7 @@ import { QuestionsService } from 'src/app/services/questions.service'; ...@@ -5,8 +5,7 @@ import { QuestionsService } from 'src/app/services/questions.service';
@Component({ @Component({
selector: 'app-update-answer', selector: 'app-update-answer',
templateUrl: './update-answer.component.html', templateUrl: './update-answer.component.html'
styleUrls: ['./update-answer.component.css']
}) })
export class UpdateAnswerComponent { export class UpdateAnswerComponent {
updateAnswer: FormGroup; updateAnswer: FormGroup;
......
...@@ -6,8 +6,7 @@ import { UsersService } from 'src/app/services/users.service'; ...@@ -6,8 +6,7 @@ import { UsersService } from 'src/app/services/users.service';
@Component({ @Component({
selector: 'app-update-question', selector: 'app-update-question',
templateUrl: './update-question.component.html', templateUrl: './update-question.component.html'
styleUrls: ['./update-question.component.css']
}) })
export class UpdateQuestionComponent { export class UpdateQuestionComponent {
updateQuestion: FormGroup; updateQuestion: FormGroup;
......
...@@ -90,13 +90,11 @@ export class SocketService { ...@@ -90,13 +90,11 @@ export class SocketService {
recievePlayerNumber(): void { recievePlayerNumber(): void {
this.socket.on("Players Waiting", number => { this.socket.on("Players Waiting", number => {
this._playerNumber.next(number); this._playerNumber.next(number);
console.log(this.playerNumber);
}) })
} }
recieveQuestion(): void { recieveQuestion(): void {
this.socket.on("Question", question => { this.socket.on("Question", question => {
this._currentQuestion.next(question); this._currentQuestion.next(question);
}) })
......
...@@ -5,8 +5,7 @@ import { UsersService } from '../services/users.service'; ...@@ -5,8 +5,7 @@ import { UsersService } from '../services/users.service';
@Component({ @Component({
selector: 'app-user-dropdown', selector: 'app-user-dropdown',
templateUrl: './user-dropdown.component.html', templateUrl: './user-dropdown.component.html'
styleUrls: ['./user-dropdown.component.css']
}) })
export class UserDropdownComponent implements OnInit { export class UserDropdownComponent implements OnInit {
......
...@@ -5,8 +5,7 @@ import { UsersService } from '../../services/users.service'; ...@@ -5,8 +5,7 @@ import { UsersService } from '../../services/users.service';
@Component({ @Component({
selector: 'app-create-user', selector: 'app-create-user',
templateUrl: './create-user.component.html', templateUrl: './create-user.component.html'
styleUrls: ['./create-user.component.css']
}) })
export class CreateUserComponent { export class CreateUserComponent {
createUser: FormGroup createUser: FormGroup
......
...@@ -6,8 +6,7 @@ import { AuthenticationService } from 'src/app/services/authentication.service'; ...@@ -6,8 +6,7 @@ import { AuthenticationService } from 'src/app/services/authentication.service';
@Component({ @Component({
selector: 'app-update-user', selector: 'app-update-user',
templateUrl: './update-user.component.html', templateUrl: './update-user.component.html'
styleUrls: ['./update-user.component.css']
}) })
export class UpdateUserComponent implements OnInit { export class UpdateUserComponent implements OnInit {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment